UI: Add command line arguments to log

This commit is contained in:
VodBox 2018-01-20 15:12:57 +13:00
parent da7b8c79a2
commit f6544dd802

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;