From 13f681599aea491b447d2ba71384a0c3ecb630dc Mon Sep 17 00:00:00 2001 From: Alberto Nidasio <alberto.nidasio@skywarder.eu> Date: Tue, 26 Apr 2022 13:13:31 +0200 Subject: [PATCH] [Logger] Removed print when logging without starting the logger --- src/shared/logger/Logger.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/logger/Logger.cpp b/src/shared/logger/Logger.cpp index 30296392a..31876f601 100644 --- a/src/shared/logger/Logger.cpp +++ b/src/shared/logger/Logger.cpp @@ -301,7 +301,6 @@ LoggerResult Logger::logImpl(const char* name, const void* data, { if (started == false) { - TRACE("Attempting to log %s but the Logger is not started!\n", name); stats.droppedSamples++; // Signal that we are trying to write to a closed log -- GitLab