nomoney: no ansi color in logs

This commit is contained in:
Juerd Waalboer 2024-11-18 23:18:02 +01:00
parent fab19ba6d0
commit f8736cbde7
2 changed files with 4 additions and 7 deletions

View file

@ -42,13 +42,10 @@ sub _inform($unresolved, $username, $skip_print = 0) {
($account eq $username ? "You don't" : "$account doesn't"),
abs($broke_users->{$account}),
);
my $b = sprintf(
"(balance: %s)",
($balance < 0 ? "\e[31;1m$balance\e[m" : $balance),
);
say "\e[31;1m$m\e[m $b";
call_hooks("log_info", "nomoney: $m $b");
call_hooks("log_info", "nomoney: $m (balance: $balance)");
my $b = ($balance < 0 ? "\e[31;1m$balance\e[m" : $balance);
say "\e[31;1m$m\e[m (balance: $b)";
}
}
}

View file

@ -17,7 +17,7 @@ use RevBank::Messages;
use RevBank::Cart;
use RevBank::Prompt;
our $VERSION = "7.2.0";
our $VERSION = "7.2.1";
our %HELP1 = (
"abort" => "Abort the current transaction",