From e094e4a177e3eedc79eb0428348bbe0c8f848717 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Fri, 22 Jun 2012 18:09:20 -0400 Subject: [PATCH] Qpsmtpd.pm: less default logging at LOGINFO --- lib/Qpsmtpd.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Qpsmtpd.pm b/lib/Qpsmtpd.pm index 86ac87d..fffecf0 100644 --- a/lib/Qpsmtpd.pm +++ b/lib/Qpsmtpd.pm @@ -588,7 +588,7 @@ sub size_threshold { my $self = shift; unless ( defined $Size_threshold ) { $Size_threshold = $self->config('size_threshold') || 0; - $self->log(LOGNOTICE, "size_threshold set to $Size_threshold"); + $self->log(LOGDEBUG, "size_threshold set to $Size_threshold"); } return $Size_threshold; }