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:
moneromooo-monero 2018-06-06 10:12:45 +01:00
parent 8a7b3ff138
commit 62c8c07c47
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 4 additions and 0 deletions

View File

@ -185,6 +185,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;