Removed force_flush arg from API (use flush_on(level) instead)

This commit is contained in:
gabime
2016-09-02 16:59:15 +03:00
parent 1df30a0733
commit e562e001cf
3 changed files with 21 additions and 22 deletions

View File

@@ -56,6 +56,8 @@ int main(int, char*[])
// Create a daily logger - a new file is created every day on 2:30am
auto daily_logger = spd::daily_logger_mt("daily_logger", "logs/daily", 2, 30);
// trigger flush if the log severity is error or higher
daily_logger->flush_on(spd::level::err);
daily_logger->info(123.44);
// Customize msg format for all messages
@@ -102,10 +104,7 @@ void async_example()
size_t q_size = 4096; //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");
// auto flush if the log severity is error or higher
async_file->flush_on(spd::level::err);
for (int i = 0; i < 100; ++i)
async_file->info("Async message #{}", i);
}