http://www.perlmonks.org?node_id=147596


in reply to Re: (cLive ;-) Re: Performance quandary
in thread Performance quandary

Thanks dragonchild!

I've been getting a lot of 'get rid of logging' or 'let BerkeleyDB handle logging'. But neither of those answers the problem of how do I let a user help me debug any problem that might arise once it is out of my control.

It is true that logging calls were quite rampant in the first incarnation of the program (and most unnecessary calls are gone now that the program is known to work in all common-cases that I can generate). But some logging is still absolutely necessary, and I'm actually quite proud of the way I've implemented logging for this trivial little program.

I ripped off, er, reused a nice little logging class written by Jeff Rowan, found here:

http://jrf.odpn.net/writings/200011plog.shtml

And then added a loglevel value, so that the user (who has a configuration file for runtime changes to the system, of course) can increase the loglevel if problems arise. Ordinarily, logging is quite brief, and the calls to $log->print simply return after checking against the current loglevel. Pretty nifty (the ", 3" at the end of all of the logging statements is the loglevel for this entry--so it is a debug level log rather than a user level log).

  • Comment on Re: Re: (cLive ;-) Re: Performance quandary