marsadm: decrease speakiness of variable substitution

This commit is contained in:
Thomas Schoebel-Theuer 2019-11-27 20:45:13 +01:00
parent b0ec727e50
commit a98187c022
1 changed files with 2 additions and 2 deletions

View File

@ -389,7 +389,7 @@ sub subst_systemd_vars {
$failed{$varname} = 1;
$replac = "UNDEFINED($varname)";
}
lprint " subst '$systemd_escape\{$varname\}' => '$replac'\n" if $verbose;
lprint " subst '$systemd_escape\{$varname\}' => '$replac'\n" if $verbose > 2;
last SWITCH;
}
if (/^verbatim$/) {
@ -402,7 +402,7 @@ sub subst_systemd_vars {
if ($escape || $this_escape) {
my $orig = $replac;
$replac = _systemd_escape($replac);
lprint " escape '$orig' => '$replac'\n" if $verbose;
lprint " escape '$orig' => '$replac'\n" if $verbose > 2;
}
$parsed .= $replac;
$text = $rest;