Hey Cory -- > I'm wondering if anyone else has put effort towards finding a > CGI::Application compatible logging service that is fast and > easy to use > within the framework created by CGI::Application and HTML::Template.
What is wrong with your web server's normal error logs? Anything you output to STDERR will be sent to them. If you want to control logging at run-time you could have a $DEBUG environment variable which is set by the web server, and controls how much logging detail is sent to STDERR. When you go into production, set your $DEBUG to 0 so that only fatal errors are logged. This system works best if you give each programmer their own web server. This way, they each have separate error logs. TTYL, -Jesse- Jesse Erlbaum, CTO Vanguard Media http://www.vm.com 212.242.5317 x115 [EMAIL PROTECTED] --------------------------------------------------------------------- Web Archive: http://www.mail-archive.com/[email protected]/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
