Enable SpdLog file rotation

Enable logger rotation. Rotation takes place when log file hits the limit defined by 'SPDLOG_MAX_SIZE'.
This commit is contained in:
Kawe Mazidjatari 2023-03-26 17:47:42 +02:00
parent 24b8cc6215
commit 4cb8f3f019

View File

@ -1,7 +1,7 @@
#pragma once
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.
constexpr int SPDLOG_NUM_FILE = 512; // Sets number of files to rotate to.
inline bool g_bSpdLog_UseAnsiClr = false;
inline bool g_bSpdLog_PostInit = false;