From 96e09b103a541b1e64071c920f7c72ec44f5c6e6 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Tue, 25 Oct 2011 21:35:03 +0200 Subject: [PATCH] cec: changed format of the log message with the frames that were received --- src/lib/CECProcessor.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib/CECProcessor.cpp b/src/lib/CECProcessor.cpp index 97b6e54..c19890b 100644 --- a/src/lib/CECProcessor.cpp +++ b/src/lib/CECProcessor.cpp @@ -530,12 +530,11 @@ void CCECProcessor::ParseVendorId(cec_logical_address device, const cec_datapack void CCECProcessor::ParseCommand(cec_command &command) { CStdString dataStr; - dataStr.Format(">> received frame: initiator: %u destination: %u", command.initiator, command.destination); + dataStr.Format(">> received frame: %1x%1x:%02x", command.initiator, command.destination, command.opcode); if (command.parameters.size > 1) { - dataStr += " data:"; for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++) - dataStr.AppendFormat(" %02x", (unsigned int)command.parameters[iPtr]); + dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]); } m_controller->AddLog(CEC_LOG_DEBUG, dataStr.c_str()); -- 2.34.1