[Fix] (MG/Constants): put log level in order

This commit is contained in:
2025-06-23 09:37:32 +08:00
parent 7c3912b9ae
commit 14b1d5a2d1
+3 -3
View File
@@ -32,9 +32,9 @@ namespace MG_Global {
namespace MG_Constants {
namespace Common {
inline constexpr int LOG_LEVEL_DEBUG = 0x0010;
inline constexpr int LOG_LEVEL_WARN = 0x0011;
inline constexpr int LOG_LEVEL_ERROR = 0x0012;
inline constexpr int LOG_LEVEL_INFO = 0x0013;
inline constexpr int LOG_LEVEL_INFO = 0x0011;
inline constexpr int LOG_LEVEL_WARN = 0x0012;
inline constexpr int LOG_LEVEL_ERROR = 0x0013;
inline constexpr int LOG_LEVEL_FATAL = 0x0014;