From d0d799465b95fe4e2039e08d376725f5af4025e4 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 5 Jul 2015 23:42:46 -0700 Subject: [PATCH] UI: Add large separator after obs initialization This makes it so it's a bit more obvious when the primary initialization has completed in the log file. --- obs/window-basic-main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 375e6afcc..45601e347 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -784,6 +784,9 @@ void OBSBasic::ResetOutputs() } } +#define MAIN_SEPARATOR \ + "=====================================================================" + void OBSBasic::OBSInit() { const char *sceneCollection = config_get_string(App()->GlobalConfig(), @@ -837,6 +840,8 @@ void OBSBasic::OBSInit() AddExtraModulePaths(); obs_load_all_modules(); + blog(LOG_INFO, MAIN_SEPARATOR); + ResetOutputs(); CreateHotkeys();