diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 68100815d..d5fc09a21 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -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;