--- trunk/lib/WebPAC/Common.pm 2005/07/24 14:20:59 30 +++ trunk/lib/WebPAC/Common.pm 2005/07/24 15:03:11 31 @@ -143,7 +143,12 @@ with C flag, it will turn logging to debug level. This function will also read C value from current object and try -to read that as configuration file if it exists. +to read that as configuration file if it exists, if it doesn't it will +fallback to default C. + +You can disable all logging by adding C to constructor of WebPAC +object. Object in C class will disable logging +automatically. =cut @@ -153,13 +158,12 @@ $file ||= $self->{'log_conf'}; $file = 'conf/log.conf'; my $name = (caller(2))[3] || caller; - if ($file) { - warn "# $name is using $file logger\n" if ($log_debug); - Log::Log4perl->init($file); - } else { - my $conf = q( ); - if ($self->{'debug'}) { - $conf = << '_log4perl_'; + + my $conf = q( ); + if ($self->{'no_log'}) { + warn "# $name disabled logging\n" if ($log_debug); + } elsif ($self->{'debug'}) { + $conf = << '_log4perl_'; log4perl.rootLogger=INFO, SCREEN @@ -170,12 +174,18 @@ log4perl.appender.SCREEN.layout.ConversionPattern=%d %p> %F{1}:%L %M - %m%n _log4perl_ - warn "# $name is using debug logger\n" if ($log_debug); - } else { - warn "# $name is using null logger\n" if ($log_debug); - } - Log::Log4perl->init( \$conf ); + warn "# $name is using debug logger\n" if ($log_debug); + } elsif ($name !~ m/Test::Exception/o) { + warn "# disabled logging for Text::Exception\n"; + } elsif ($file) { + warn "# $name is using $file logger\n" if ($log_debug); + Log::Log4perl->init($file); + } else { + warn "# $name is using null logger\n" if ($log_debug); } + Log::Log4perl->init( \$conf ); + + return 1; }