A collection of macros for streamlined logging operations.
A collection of macros for streamlined logging operations.
This group includes macros for logging messages at various levels, adding loggers, managing log settings, and controlling loggers.
Examples:
Basic Logging
LOGIT_INFO("This is an informational message");
LOGIT_WARN("This is a warning message");
LOGIT_ERROR("This is an error message");
Stream-Based Logging
LOGIT_STREAM_INFO() << "Info level stream logging: value=" << 42;
LOGIT_STREAM_TRACE_TO(2) << "Trace to unique logger at index 2";
Conditional Logging
int x = 42;
LOGIT_DEBUG_IF(x > 0, "x is positive: ", x);
Logger Management
LOGIT_SET_LOGGER_ENABLED(1, false);
if (LOGIT_IS_LOGGER_ENABLED(1)) {
LOGIT_INFO("Logger 1 is enabled");
}