From c1df6c2e1f7d3e6cf453a6bb0d9e2deefdbc2477 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; }