[channels,rdpdr] improve log message

try to stringify magic numbers in log message
This commit is contained in:
Armin Novak 2022-12-14 13:22:39 +01:00 committed by Martin Fleisz
parent b5e2c2a81d
commit 231babef5e
1 changed files with 4 additions and 2 deletions

View File

@ -1596,8 +1596,10 @@ static UINT rdpdr_process_receive(rdpdrPlugin* rdpdr, wStream* s)
if (error != CHANNEL_RC_OK)
{
WLog_ERR(TAG,
"Unknown message: Component: 0x%04" PRIX16 " PacketId: 0x%04" PRIX16 "",
component, packetId);
"Unknown message: Component: %s [0x%04" PRIX16
"] PacketId: %s [0x%04" PRIX16 "]",
rdpdr_component_string(component), component,
rdpdr_packetid_string(packetId), packetId);
}
}
}