Increase all rotating logger's size to 10MB

This commit is contained in:
Amos 2022-01-20 00:41:00 +01:00
parent 963c189f35
commit 3017454dba

View File

@ -1,6 +1,6 @@
#pragma once
constexpr int SPDLOG_MAX_SIZE = 10 * 1024; // Sets number of bytes before rotating logger.
constexpr int SPDLOG_MAX_SIZE = 10 * 1024 * 1024; // Sets number of bytes before rotating logger.
constexpr int SPDLOG_NUM_FILE = 0; // Sets number of files to rotate to.
inline bool g_bSpdLog_UseAnsiClr = false;