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
No known key found for this signature in database
GPG key ID: 29D4BCB6416F53EC
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);
}