Asynchronous, crash-safe logger library for C++ applications
Asynchronous, 'crash safe', logger that is easy to use
g3log$ g3log is a library; use it in C++ code: #include <g3log/g3log.hpp>$ auto worker = g3log::LogWorker::createLogWorker(); auto handle = worker->addDefaultLogger("MyApp", "./log");$ LOG(INFO) << "Info message"; LOG(WARNING) << "Warning"; LOG(FATAL) << "Fatal error";