diff --git a/src/Application.cpp b/src/Application.cpp index d27d143c..0dec377f 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -51,7 +51,7 @@ int Application::run() { } #ifdef BLOOM_DEBUG_BUILD - Logger::warning("This is a debug build - some functions may not work as expected"); + Logger::warning("Debug build"); #endif #ifdef EXCLUDE_INSIGHT diff --git a/src/Logger/Logger.cpp b/src/Logger/Logger.cpp index b5a82a96..2e436c29 100644 --- a/src/Logger/Logger.cpp +++ b/src/Logger/Logger.cpp @@ -5,7 +5,6 @@ void Logger::configure(const ProjectConfig& projectConfig) { if (projectConfig.debugLogging) { Logger::debugPrintingEnabled = true; - Logger::debug("Debug log printing has been enabled"); } }