From c581b1062807e7fc869249bac503c9033b9e821f Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sat, 16 Dec 2006 09:56:09 +0000 Subject: [PATCH] Reduce the log level of the "running plugin" message to LOGDEBUG. The mere fact that a plugin was called is only useful for debugging. git-svn-id: https://svn.perl.org/qpsmtpd/branches/0.3x@684 958fd67b-6ff1-0310-b445-bb7760255be9 --- lib/Qpsmtpd.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Qpsmtpd.pm b/lib/Qpsmtpd.pm index 2338042..d262518 100644 --- a/lib/Qpsmtpd.pm +++ b/lib/Qpsmtpd.pm @@ -367,7 +367,7 @@ sub run_continuation { $@ 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;