mirror of
https://github.com/monero-project/monero.git
synced 2025-08-24 01:35:01 -04:00
add a command_line function to check for defaulted options
This commit is contained in:
parent
a2041c9874
commit
8f0cea6355
5 changed files with 17 additions and 11 deletions
|
@ -205,13 +205,13 @@ int main(int argc, char const * argv[])
|
|||
// absolute path
|
||||
// relative path: relative to data_dir
|
||||
bf::path log_file_path {data_dir / std::string(CRYPTONOTE_NAME ".log")};
|
||||
if (! vm["log-file"].defaulted())
|
||||
if (!command_line::is_arg_defaulted(vm, daemon_args::arg_log_file))
|
||||
log_file_path = command_line::get_arg(vm, daemon_args::arg_log_file);
|
||||
log_file_path = bf::absolute(log_file_path, relative_path_base);
|
||||
mlog_configure(log_file_path.string(), true, command_line::get_arg(vm, daemon_args::arg_max_log_file_size));
|
||||
|
||||
// Set log level
|
||||
if (!vm["log-level"].defaulted())
|
||||
if (!command_line::is_arg_defaulted(vm, daemon_args::arg_log_level))
|
||||
{
|
||||
mlog_set_log(command_line::get_arg(vm, daemon_args::arg_log_level).c_str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue