Dead simple C++ logger, written for study purpose.
Library is licensed under MIT.
#include <Logger/logger.hpp>
#include <Logger/stdoutsink.hpp>
int main()
{
LOG_ADDSINK("stdout", new CingKong::Logging::StdoutSink);
LOG_DEBUG("the start of everything");
LOG_REMOVESINK("stdout");
}