From: Lars Op den Kamp Date: Tue, 25 Oct 2011 19:35:03 +0000 (+0200) Subject: cec: changed format of the log message with the frames that were received X-Git-Tag: upstream/2.2.0~1^2~223 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=96e09b103a541b1e64071c920f7c72ec44f5c6e6;p=deb_libcec.git cec: changed format of the log message with the frames that were received --- 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());