wallet: do not log by default if we're not asked to log to console
This means monero-wallet-rpc still does, but the user level program does not.
This commit is contained in:
parent
4e2b279a94
commit
7ce841cc2f
|
@ -179,6 +179,10 @@ namespace wallet_args
|
|||
{
|
||||
mlog_set_log(command_line::get_arg(vm, arg_log_level).c_str());
|
||||
}
|
||||
else if (!log_to_console)
|
||||
{
|
||||
mlog_set_categories("");
|
||||
}
|
||||
|
||||
if (notice)
|
||||
Print(print) << notice << ENDL;
|
||||
|
|
Loading…
Reference in New Issue