From 06a7bb7fb6934af2bb580da53abe2adce83836e8 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sat, 1 Jun 2024 08:56:28 +0100 Subject: [PATCH] vacation.pl: bump log priority in send_vacation_email(..) routine - see #832 --- VIRTUAL_VACATION/vacation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VIRTUAL_VACATION/vacation.pl b/VIRTUAL_VACATION/vacation.pl index ad762ae5..d693915b 100644 --- a/VIRTUAL_VACATION/vacation.pl +++ b/VIRTUAL_VACATION/vacation.pl @@ -643,7 +643,7 @@ sub send_vacation_email { if (@_) { $logger->error("Failed to send vacation response to $to from $from subject $subject: @_"); } else { - $logger->debug("Vacation response sent to $to from $from subject $subject Email $email_from sent\n"); + $logger->info("Vacation response sent to $to from $from subject $subject Email $email_from sent\n"); } } }