From e73c6fd3b03492760aa3787794d16c3fcf5458bf Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 24 Mar 2023 13:00:54 +0000 Subject: [PATCH] logs: disable stdout after init --- src/Compositor.cpp | 4 ++++ src/debug/Log.cpp | 3 ++- src/debug/Log.hpp | 5 +++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 72956582..b145022c 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -85,6 +85,10 @@ void CCompositor::setRandomSplash() { } void CCompositor::initServer() { + + Debug::log(LOG, "Disabling stdout logs! Check the log for further logs."); + Debug::disableStdout = true; + m_sWLDisplay = wl_display_create(); m_sWLEventLoop = wl_display_get_event_loop(m_sWLDisplay); diff --git a/src/debug/Log.cpp b/src/debug/Log.cpp index 7800b831..8b1a8fab 100644 --- a/src/debug/Log.cpp +++ b/src/debug/Log.cpp @@ -75,5 +75,6 @@ void Debug::log(LogLevel level, const char* fmt, ...) { ofs.close(); // log it to the stdout too. - std::cout << output << "\n"; + if (!disableStdout) + std::cout << output << "\n"; } diff --git a/src/debug/Log.hpp b/src/debug/Log.hpp index 98d176af..a159a2da 100644 --- a/src/debug/Log.hpp +++ b/src/debug/Log.hpp @@ -20,6 +20,7 @@ namespace Debug { void wlrLog(wlr_log_importance level, const char* fmt, va_list args); inline std::string logFile; - inline int64_t* disableLogs = nullptr; - inline int64_t* disableTime = nullptr; + inline int64_t* disableLogs = nullptr; + inline int64_t* disableTime = nullptr; + inline bool disableStdout = false; }; \ No newline at end of file