// test.cpp : Defines the entry point for the console application. // #include "stdafx.h" int main(int argc, char* argv[]) { auto null_sink = std::make_shared(); auto async = std::make_shared(100); auto fsink = std::make_shared("newlog", "txt", 1024*1024*10 , 2); async->add_sink(fsink); c11log::logger logger("test"); logger.add_sink(async); std::atomic counter { 0 }; auto counter_ptr = &counter; for (int i = 0; i < 4; i++) { new std::thread([&logger, counter_ptr]() { while (true) { logger.info() << "Hello from thread" << std::this_thread::get_id(); (*counter_ptr)++; } }); } while (true) { counter = 0; std::this_thread::sleep_for(std::chrono::seconds(1)); std::cout << "Counter = " << utils::format(counter.load()) << std::endl; } async->shutdown(std::chrono::seconds(10)); return 0; }