From f224634c0b69b806a6a19749a73937d902d05a3e Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Wed, 5 Feb 2025 11:54:54 +1100 Subject: [PATCH] Make min_log_level opt in --- src/Reactor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reactor.hpp b/src/Reactor.hpp index d5fdab74..b59ba3d0 100644 --- a/src/Reactor.hpp +++ b/src/Reactor.hpp @@ -184,7 +184,7 @@ class Reactor { /// The display level above which logs from this reactor will be displayed LogLevel log_level{LogLevel::INFO}; /// The minimum log level that will be always emitted (if log_level is below this those will be emitted too) - LogLevel min_log_level{LogLevel::DEBUG}; + LogLevel min_log_level{LogLevel::FATAL}; protected: /***************************************************************************************************************