Added --log-file command line parameter

This commit is contained in:
SChernykh
2025-11-20 16:42:34 +01:00
parent b81a582154
commit 8151a5a537
6 changed files with 16 additions and 3 deletions
+6
View File
@@ -124,6 +124,12 @@ Params::Params(int argc, char* const argv[])
ok = true;
}
if ((strcmp(argv[i], "--log-file") == 0) && (i + 1 < argc)) {
// Processed in main.cpp
++i;
ok = true;
}
if ((strcmp(argv[i], "--sidechain-config") == 0) && (i + 1 < argc)) {
m_sidechainConfig = argv[++i];
ok = true;