diff --git a/bench/spdlog-bench-async.cpp b/bench/spdlog-bench-async.cpp index 9ec78472..eaaa131f 100644 --- a/bench/spdlog-bench-async.cpp +++ b/bench/spdlog-bench-async.cpp @@ -6,13 +6,13 @@ int main(int, char* []) { int howmany = 1000000; namespace spd = spdlog; - spd::set_async_mode(2500, std::chrono::seconds(0)); + spd::set_async_mode(howmany); ///Create a file rotating logger with 5mb size max and 3 rotated files auto logger = spd::rotating_logger_mt("file_logger", "logs/spd-sample", 10 *1024 * 1024 , 5); logger->set_pattern("[%Y-%b-%d %T.%e]: %v"); for(int i = 0 ; i < howmany; ++i) logger->info() << "spdlog message #" << i << ": This is some text for your pleasure"; - spd::stop(); + return 0; } diff --git a/bench/spdlog-bench-mt-async.cpp b/bench/spdlog-bench-mt-async.cpp index 58027020..aacf00d1 100644 --- a/bench/spdlog-bench-mt-async.cpp +++ b/bench/spdlog-bench-mt-async.cpp @@ -17,7 +17,7 @@ int main(int argc, char* argv[]) int howmany = 1000000; namespace spd = spdlog; - spd::set_async_mode(2500, std::chrono::seconds(0)); + spd::set_async_mode(howmany, std::chrono::seconds(0)); ///Create a file rotating logger with 5mb size max and 3 rotated files auto logger = spd::rotating_logger_mt("file_logger", "logs/spd-sample", 10 *1024 * 1024 , 5); @@ -45,6 +45,5 @@ int main(int argc, char* argv[]) t.join(); }; - spd::stop(); return 0; }