spdlog/test/test.cpp
2014-01-26 01:53:23 +02:00

45 lines
1.0 KiB
C++

// 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<c11log::sinks::null_sink>();
auto async = std::make_shared<c11log::sinks::async_sink>(100);
auto fsink = std::make_shared<c11log::sinks::rotating_file_sink>("newlog", "txt", 1024*1024*10 , 2);
async->add_sink(fsink);
c11log::logger logger("test");
logger.add_sink(async);
std::atomic<uint32_t> 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;
}