From 58dc68b1904571ed26fbaa9480290d20a883aaa0 Mon Sep 17 00:00:00 2001 From: Jared Johnson Date: Tue, 16 Sep 2014 15:12:42 -0500 Subject: [PATCH] Demote warning to LOGDEBUG it's not really very interesting when a map file doesn't exist for an optional config parameter --- lib/Qpsmtpd/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Qpsmtpd/Config.pm b/lib/Qpsmtpd/Config.pm index e2eb25e..d81c1cd 100644 --- a/lib/Qpsmtpd/Config.pm +++ b/lib/Qpsmtpd/Config.pm @@ -106,7 +106,7 @@ sub get_qmail_map { my ($self, $config, $configfile) = @_; if (!-e $configfile . ".cdb") { - $self->log(LOGERROR, "File $configfile.cdb does not exist"); + $self->log(LOGDEBUG, "File $configfile.cdb does not exist"); $config_cache{$config} ||= []; return +{}; }