From 1e954d10dc25b527f95bc60457c7fbc074bc415f Mon Sep 17 00:00:00 2001 From: Remy Prechelt <prechelt@hawaii.edu> Date: Sun, 15 Nov 2020 23:58:46 -1000 Subject: [PATCH] Change default logging to ERROR from CRITICAL --- corsika/framework/logging/Logging.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/corsika/framework/logging/Logging.hpp b/corsika/framework/logging/Logging.hpp index 6bc3ebcaa..5378c8060 100644 --- a/corsika/framework/logging/Logging.hpp +++ b/corsika/framework/logging/Logging.hpp @@ -36,8 +36,8 @@ #ifdef DEBUG // trace is the highest level of logging (ALL messages will be printed) #define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE -#else // otherwise, remove everything but "critical" messages -#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_CRITICAL +#else // otherwise, remove everything but "error" and worse messages +#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_ERROR #endif #include <spdlog/fmt/ostr.h> // will output whenerver a streaming operator is found -- GitLab