William McKee wrote:
The testing documentation at perl.apache.org says that the current trace
level defaults to info. However, my system is outputting debug messages
to the t/logs/error_log file. Is this the correct behavior in which case
the docs are wrong? Or have I somehow configured my system to default to
debug mode?

What are the 'debug' messages you are talking about?

The Apache LogLevel is set to 'debug':

% grep Level t/conf/httpd.conf
LogLevel    debug

The Apache-Test tracing mechanism is set to 'info'. so:

use Apache::TestTrace;
info "doing foo";  # will be logged
debug "doing bar"; # won't be logged

Refer to the Apache::TestTrace manpage for more information.

Please suggest a clarification to the docs now that you know all the answers to this issue, William ;)


__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com



Reply via email to