From 151f39b1e9ede40c58569690ea5c224b5b783ee8 Mon Sep 17 00:00:00 2001 From: Luca Burelli Date: Mon, 15 Dec 2025 12:42:48 +0100 Subject: [PATCH] MsgPack: set default log level to WARN to avoid CI issues (2) Missed this spot while setting the default log level for MsgPack to avoid a warning on every CI run. Signed-off-by: Luca Burelli --- src/error.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/error.h b/src/error.h index c98cb7d..d177c52 100644 --- a/src/error.h +++ b/src/error.h @@ -14,6 +14,9 @@ #include +// MsgPack log level +#define DEBUGLOG_DEFAULT_LOG_LEVEL_WARN + #include "MsgPack.h" #define NO_ERR 0x00 @@ -43,4 +46,4 @@ struct RpcError { MSGPACK_DEFINE(code, traceback); // -> [code, traceback] }; -#endif \ No newline at end of file +#endif