From f6b92be4b122e4e04dbf8d9fc1e96aafcb8426d8 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sat, 16 Aug 2025 09:28:38 +0200 Subject: [PATCH] Fix dump title going to wrong log target --- BaseCommon/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseCommon/Utils.cpp b/BaseCommon/Utils.cpp index c5d6746..da3c3e2 100644 --- a/BaseCommon/Utils.cpp +++ b/BaseCommon/Utils.cpp @@ -126,7 +126,7 @@ void CUtils::dump(const char* title, const unsigned char* data, unsigned int len assert(title != NULL); assert(data != NULL); - CLog::logInfo("%s\n", title); + CLog::logDebug("%s\n", title); unsigned int offset = 0U;