Logger System 0.1.3
High-performance C++20 thread-safe logging system with asynchronous capabilities
Loading...
Searching...
No Matches
Using

configuration templates:

// High-performance configuration
auto logger = logger_builder()
.use_template("high_performance")
.with_file_output("/var/log/app", "myapp")
.build();
// Debug configuration with environment detection
auto logger = logger_builder()
.detect_environment()
.use_template("debug")
.with_metrics(true)
.build();