Latest updates

This commit is contained in:
Dave Morriss
2023-01-27 20:33:31 +00:00
parent 6f20932290
commit 389848f43a
8 changed files with 92 additions and 36 deletions

View File

@@ -392,7 +392,8 @@ unless ($work) {
}
#-------------------------------------------------------------------------------
# Set up logging keeping the default log layout except for the date
# Set up logging keeping the default log layout except for the date. Enable
# 'utf-8' mode (documented in Log::Handler::Output::File).
#-------------------------------------------------------------------------------
my $LOG = Log::Handler->new();
@@ -402,6 +403,7 @@ $LOG->add(
filename => $logfile,
minlevel => 0,
maxlevel => 7,
'utf-8' => 1,
}
);