From 137727deed4b91b9451e2ff64848bbc71e0893f3 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Wed, 28 Dec 2022 07:48:45 +0100 Subject: [PATCH] #29 change dump log target to debug --- BaseCommon/Utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseCommon/Utils.cpp b/BaseCommon/Utils.cpp index ebb1c57..c5d6746 100644 --- a/BaseCommon/Utils.cpp +++ b/BaseCommon/Utils.cpp @@ -70,7 +70,7 @@ void CUtils::dump(const char* title, const bool* data, unsigned int length) output += "*'"; - CLog::logInfo("%04X: %s\n", offset / 8U, output.c_str()); + CLog::logDebug("%04X: %s\n", offset / 8U, output.c_str()); offset += 128U; } @@ -115,7 +115,7 @@ void CUtils::dumpRev(const char* title, const bool* data, unsigned int length) output += "*"; - CLog::logInfo("%04X: %s\n", offset / 8U, output.c_str()); + CLog::logDebug("%04X: %s\n", offset / 8U, output.c_str()); offset += 128U; } @@ -157,7 +157,7 @@ void CUtils::dump(const char* title, const unsigned char* data, unsigned int len output += "*"; - CLog::logInfo("%04X: %s\n", offset, output.c_str()); + CLog::logDebug("%04X: %s\n", offset, output.c_str()); offset += 16U;