Lightweight, fully-customizable log library for C++17.
Github repository
Highlights
Standard streams style operations
Fully customizable message format with simple interface
Level and predicate based conditional logging
Quick Start
#include "llogger.h"
llogger ll(std::cout, llogger::info);
ll(llogger::warning) << "Weather control device detected.";
// [ 2021-10-04 22:40:47 ] WARNING: Weather control device detected.
Conditional Logging
Values in the log are costly to be eva...