|
Logger System 0.1.3
High-performance C++20 thread-safe logging system with asynchronous capabilities
|
Check if a log level meets the minimum threshold.
Check if a log level meets the minimum thresholdlog_level uses ascending severity: trace(0) < debug(1) < info(2) < warning(3) < error(4) < critical(5) → Use >= comparison (higher number = more severe)
| level | The log level to check |
| minimum | The minimum threshold level |
minimum=warning(3), log warning(3), error(4), critical(5) but skip trace(0), debug(1), info(2)