Merge pull request #1151 from VodBox/command-line-args

UI: Add Command Line Arguments to log
This commit is contained in:
Jim 2018-01-20 11:32:15 -08:00 committed by GitHub
commit f1d5d60435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1401,6 +1401,14 @@ static int run_program(fstream &logFile, int argc, char *argv[])
/* --------------------------------------- */
#endif
if (argc > 1) {
stringstream stor;
stor << argv[1];
for (int i = 2; i < argc; ++i) {
stor << " " << argv[i];
}
blog(LOG_INFO, "Command Line Arguments: %s", stor.str().c_str());
}
if (!program.OBSInit())
return 0;