Update example.cpp

This commit is contained in:
Gabi Melman 2014-12-21 03:04:01 +02:00
parent 8145d0fdd3
commit 4ce0218ac2
1 changed files with 1 additions and 3 deletions

View File

@ -65,11 +65,9 @@ int main(int, char* [])
SPDLOG_TRACE(console, "Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23);
SPDLOG_DEBUG(console, "Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23);
//
// Asynchronous logging is very fast..
// Just call spdlog::set_async_mode(q_size) and all created loggers from now on will be asynchronous..
//
size_t q_size = 1048576; //queue size must be power of 2
spdlog::set_async_mode(q_size);
auto async_file= spd::daily_logger_st("async_file_logger", "logs/async_log.txt");