From 3017454dba99ca78c6eea34f94caaa4d68df313c Mon Sep 17 00:00:00 2001 From: Amos <48657826+Mauler125@users.noreply.github.com> Date: Thu, 20 Jan 2022 00:41:00 +0100 Subject: [PATCH] Increase all rotating logger's size to 10MB --- r5dev/core/logdef.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/core/logdef.h b/r5dev/core/logdef.h index e4c41bf9..4da41962 100644 --- a/r5dev/core/logdef.h +++ b/r5dev/core/logdef.h @@ -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;