Moved verbose DEBUG and diagnostic logging from level 0 to level 6 to reduce console spam during normal operation

This commit is contained in:
Matt Hess
2025-12-08 23:56:25 +00:00
parent 1d319325e5
commit 0a7d287c40
8 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ static void debug_hex(const char* label, const uint8_t* data, size_t len)
for (size_t i = 0; i < len && i < 64; ++i) {
sprintf(hex + i*2, "%02x", data[i]);
}
LOGINFO(0, label << ": " << static_cast<const char*>(hex));
LOGINFO(6, label << ": " << static_cast<const char*>(hex));
}
// BLAKE2b keyed hash wrapper