Demote warning to LOGDEBUG

it's not really very interesting when a map file doesn't exist for an optional config parameter
This commit is contained in:
Jared Johnson 2014-09-16 15:12:42 -05:00
parent 13f445596a
commit 58dc68b190

View File

@ -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 +{};
}