diff options
-rw-r--r-- | Changelog | 1 | ||||
-rwxr-xr-x | lacme-accountd | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ lacme (0.8.1) upstream; + lacme-accountd: refuse to sign JWS with an invalid Protected Header. - lacme: in the [accountd] config, let lacme-accountd(1) do the %-expansion for 'config', not lacme(8) when building the command. + - lacme-accountd: don't log debug messages unless --debug is set. -- Guilhem Moulin <guilhem@fripost.org> Mon, 22 Feb 2021 12:04:28 +0100 diff --git a/lacme-accountd b/lacme-accountd index 5109888..47a4c32 100755 --- a/lacme-accountd +++ b/lacme-accountd @@ -67,7 +67,7 @@ usage(0) if $OPTS{help}; my $LOG; sub logmsg($@) { my $lvl = shift // "all"; - if (defined $LOG) { + if (defined $LOG and ($lvl ne "debug" or $OPTS{debug})) { my $now = localtime; $LOG->printflush("[", $now, "] ", @_, "\n") or warn "print: $!"; } |