Skip to content

Commit

Permalink
Looking at #474
Browse files Browse the repository at this point in the history
  • Loading branch information
plk committed Mar 29, 2024
1 parent ecf93f0 commit 62a1a9b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Biber/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,9 @@ sub _initopts {
}
}

# Sanitse log file name to NFC
$biberlog = NFC($biberlog);

# cache meta markers since they are referenced in the oft-called _get_handler
$CONFIG_META_MARKERS{annotation} = quotemeta(Biber::Config->getoption('annotation_marker'));
$CONFIG_META_MARKERS{namedannotation} = quotemeta(Biber::Config->getoption('named_annotation_marker'));
Expand Down Expand Up @@ -308,7 +311,7 @@ sub _initopts {
$logger->info("This is Biber $vn$tool") unless Biber::Config->getoption('nolog');

$logger->info("Config file is '" . NFC($opts->{configfile}) . "'") if $opts->{configfile};
$logger->info("Logfile is '" . NFC($biberlog) . "'") unless Biber::Config->getoption('nolog');
$logger->info("Logfile is '$biberlog'") unless Biber::Config->getoption('nolog');

if (Biber::Config->getoption('debug')) {
$screen->info("DEBUG mode: all messages are logged to '$biberlog'")
Expand Down

0 comments on commit 62a1a9b

Please sign in to comment.