I need to turn off the spdlog level before some code then return it to the previous value after.
How do I get the current level before turning it off?
To get current level of logger use logger::level().
To set new level use logger::set_level().
If you have a spdlog::logger
object you're using (say, my_logger
), then:
my_logger.level()
.my_logger.should_log(some_level)
where some_level
could be, for example spdlog::level::debug
.Now suppose you're using the global logger (e.g. you emit log messages using spdlog::info()
, spdlog::error()
and such).
spdlog
version 1.8.0 and later
You can obtain the global log level with a call to spdlog::get_level()
(which is a freestanding function, not a method).
spdlog
versions before 1.8.0
You need to get your hand on the implicit logger object - by callingspdlog::default_logger_raw()
(it gets you a pointer.) Now just proceed as in Scenario 1 above.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With