From: Lars Op den Kamp Date: Thu, 26 Apr 2012 10:49:07 +0000 (+0200) Subject: cec: changed the log level of the 'unsupported feature' message to debug X-Git-Tag: upstream/2.2.0~1^2~29^2^2~31 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=2f2cfc2dadd4095828db6c34b31a7bda95961ed4 cec: changed the log level of the 'unsupported feature' message to debug --- diff --git a/src/lib/devices/CECBusDevice.cpp b/src/lib/devices/CECBusDevice.cpp index 8a9f963..2e78118 100644 --- a/src/lib/devices/CECBusDevice.cpp +++ b/src/lib/devices/CECBusDevice.cpp @@ -1032,7 +1032,7 @@ bool CCECBusDevice::IsUnsupportedFeature(cec_opcode opcode) CLockObject lock(m_mutex); bool bUnsupported = (m_unsupportedFeatures.find(opcode) != m_unsupportedFeatures.end()); if (bUnsupported) - CLibCEC::AddLog(CEC_LOG_NOTICE, "'%s' is marked as unsupported feature for device '%s'", ToString(opcode), GetLogicalAddressName()); + CLibCEC::AddLog(CEC_LOG_DEBUG, "'%s' is marked as unsupported feature for device '%s'", ToString(opcode), GetLogicalAddressName()); return bUnsupported; }