[svn:qpsmtpd] r684 - branches/0.3x/lib
[email protected] Sat, 16 Dec 2006 01:56:10 -0800 (PST)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
Author: hjp
Date: Sat Dec 16 01:56:09 2006
New Revision: 684
Modified:
branches/0.3x/lib/Qpsmtpd.pm
Log:
Reduce the log level of the "running plugin" message to LOGDEBUG.
The mere fact that a plugin was called is only useful for debugging.
Modified: branches/0.3x/lib/Qpsmtpd.pm
==============================================================================
--- branches/0.3x/lib/Qpsmtpd.pm (original)
+++ branches/0.3x/lib/Qpsmtpd.pm Sat Dec 16 01:56:09 2006
@@ -367,7 +367,7 @@
$@ and warn("FATAL LOGGING PLUGIN ERROR: ", $@) and next;
}
else {
- $self->varlog(LOGINFO, $hook, $code->{name});
+ $self->varlog(LOGDEBUG, $hook, $code->{name});
eval { (@r) = $code->{code}->($self, $self->transaction, @$args); };
$@ and $self->log(LOGCRIT, "FATAL PLUGIN ERROR: ", $@) and next;