From 59b7b8e19231267605007ba8d2ec111b69529ca0 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sat, 7 Feb 2026 17:34:34 +0100 Subject: [PATCH] add more debug information --- Common/DPlusProtocolHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/DPlusProtocolHandler.cpp b/Common/DPlusProtocolHandler.cpp index 41e1e21..ab02eb9 100644 --- a/Common/DPlusProtocolHandler.cpp +++ b/Common/DPlusProtocolHandler.cpp @@ -152,7 +152,7 @@ bool CDPlusProtocolHandler::readPackets() return false; default: // An unknown type - // CUtils::dump("Unknown packet type from D-Plus", m_buffer, m_length); + CUtils::dump("Unknown packet type from D-Plus (DSVT)", m_buffer, m_length); return true; } } else { @@ -168,7 +168,7 @@ bool CDPlusProtocolHandler::readPackets() return false; } else { // An unknown type - CUtils::dump("Unknown packet type from D-Plus", m_buffer, m_length); + CUtils::dump("Unknown packet type from D-Plus (Other)", m_buffer, m_length); return true; } }