| 1103 | } |
| 1104 | |
| 1105 | void ArgsManager::LogArgs() const |
| 1106 | { |
| 1107 | LOCK(cs_args); |
| 1108 | for (const auto& section : m_settings.ro_config) { |
| 1109 | logArgsPrefix("Config file arg:", section.first, section.second); |
| 1110 | } |
| 1111 | for (const auto& setting : m_settings.rw_settings) { |
| 1112 | LogPrintf("Setting file arg: %s = %s\n", setting.first, setting.second.write()); |
| 1113 | } |
| 1114 | logArgsPrefix("Command-line arg:", "", m_settings.command_line_options); |
| 1115 | } |
| 1116 | |
| 1117 | bool RenameOver(fs::path src, fs::path dest) |
| 1118 | { |