mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #5454
b0a34668
daemon: fix absolute/relative log file test for windows (moneromooo-monero)
This commit is contained in:
commit
a8a445922f
@ -257,11 +257,7 @@ int main(int argc, char const * argv[])
|
|||||||
bf::path log_file_path {data_dir / std::string(CRYPTONOTE_NAME ".log")};
|
bf::path log_file_path {data_dir / std::string(CRYPTONOTE_NAME ".log")};
|
||||||
if (!command_line::is_arg_defaulted(vm, daemon_args::arg_log_file))
|
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 = command_line::get_arg(vm, daemon_args::arg_log_file);
|
||||||
#ifdef __WIN32
|
if (!log_file_path.has_parent_path())
|
||||||
if (!strchr(log_file_path.c_str(), '/') && !strchr(log_file_path.c_str(), '\\'))
|
|
||||||
#else
|
|
||||||
if (!strchr(log_file_path.c_str(), '/'))
|
|
||||||
#endif
|
|
||||||
log_file_path = bf::absolute(log_file_path, relative_path_base);
|
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), command_line::get_arg(vm, daemon_args::arg_max_log_files));
|
mlog_configure(log_file_path.string(), true, command_line::get_arg(vm, daemon_args::arg_max_log_file_size), command_line::get_arg(vm, daemon_args::arg_max_log_files));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user