Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabi Melman <gmelman1@gmail.com>2020-04-26 19:49:12 +0300
committerGitHub <noreply@github.com>2020-04-26 19:49:12 +0300
commit0480920058ca74b0db3f709fe7db9c684c4d979a (patch)
tree6b24b19fe3637858115561969d38dd56525a7b01
parentd977dd439558f6510138e74429b223499686d481 (diff)
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d91dbb2b..258bb370 100644
--- a/README.md
+++ b/README.md
@@ -125,7 +125,7 @@ void rotating_example()
// Create a file rotating logger with 5mb size max and 3 rotated files
auto max_size = 1048576 * 5;
auto max_files = 3;
- auto rotating_logger = spdlog::rotating_logger_mt("some_logger_name", "logs/rotating.txt", max_size, max_files);
+ auto logger = spdlog::rotating_logger_mt("some_logger_name", "logs/rotating.txt", max_size, max_files);
}
```