Update README.md

This commit is contained in:
Gabi Melman 2016-05-21 10:44:08 +03:00
parent 5202a7806f
commit 83231a364d
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ int main(int, char* [])
// 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
size_t q_size = 8192; //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");
async_file->info() << "This is async log.." << "Should be very fast!";