Initialize logging before we do parameter interaction

This commit is contained in:
Jonas Schnelli
2015-11-26 14:03:27 +01:00
parent df66147613
commit a46f87f0c1
4 changed files with 16 additions and 7 deletions

View File

@@ -151,6 +151,8 @@ bool AppInit(int argc, char* argv[])
#endif
SoftSetBoolArg("-server", true);
// Set this early so that parameter interactions go to console
InitLogging();
InitParameterInteraction();
fRet = AppInit2(threadGroup, scheduler);
}