IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 1e954d10 authored by Remy Prechelt's avatar Remy Prechelt Committed by ralfulrich
Browse files

Change default logging to ERROR from CRITICAL

parent 6bb37285
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment