#29 change dump log target to debug

pull/32/head
Geoffrey Merck 3 years ago
parent 39057bb6e3
commit 137727deed

@ -70,7 +70,7 @@ void CUtils::dump(const char* title, const bool* data, unsigned int length)
output += "*'"; output += "*'";
CLog::logInfo("%04X: %s\n", offset / 8U, output.c_str()); CLog::logDebug("%04X: %s\n", offset / 8U, output.c_str());
offset += 128U; offset += 128U;
} }
@ -115,7 +115,7 @@ void CUtils::dumpRev(const char* title, const bool* data, unsigned int length)
output += "*"; output += "*";
CLog::logInfo("%04X: %s\n", offset / 8U, output.c_str()); CLog::logDebug("%04X: %s\n", offset / 8U, output.c_str());
offset += 128U; offset += 128U;
} }
@ -157,7 +157,7 @@ void CUtils::dump(const char* title, const unsigned char* data, unsigned int len
output += "*"; output += "*";
CLog::logInfo("%04X: %s\n", offset, output.c_str()); CLog::logDebug("%04X: %s\n", offset, output.c_str());
offset += 16U; offset += 16U;

Loading…
Cancel
Save

Powered by TurnKey Linux.