Update README.md

This commit is contained in:
Gabi Melman 2020-04-23 02:49:37 +03:00 committed by GitHub
parent ac85e383a9
commit b56b6509b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,7 +137,7 @@ void rotating_example()
{
// Create a file rotating logger with 5mb size max and 3 rotated files
auto max_size = 1048576 * 5;
auot max_files = 3;
auto max_files = 3;
auto rotating_logger = spdlog::rotating_logger_mt("some_logger_name", "logs/rotating.txt", max_size, max_files);
}
```