From 733fff6dd40ec3b61c3074bc6afec8bc2636c6a0 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 24 Nov 2014 02:52:23 +0200 Subject: [PATCH] small fix in comment --- bench/spdlog-bench-mt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/spdlog-bench-mt.cpp b/bench/spdlog-bench-mt.cpp index 825038c9..93a3cca0 100644 --- a/bench/spdlog-bench-mt.cpp +++ b/bench/spdlog-bench-mt.cpp @@ -17,7 +17,7 @@ int main(int argc, char* argv[]) int howmany = 1000000; namespace spd = spdlog; - ///Create a file rotating logger with 5mb size max and 3 rotated files + ///Create a file rotating logger with 5mb size max and 5 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");