[WIP] Add some debug, just some more.

This commit is contained in:
Nick Couchman 2020-04-05 14:11:06 -04:00
parent 7a624c4d86
commit d26f497a9c

View File

@ -51,6 +51,10 @@ void guac_rdpsnd_process_receive(guac_rdp_common_svc* svc,
if (Stream_GetRemainingLength(input_stream) < header.body_size) {
guac_client_log(svc->client, GUAC_LOG_WARNING,
"Not enough bytes to process sound body.");
guac_client_log(svc->client, GUAC_LOG_DEBUG,
"Input bytes: %d, Body size: %d",
Stream_GetRemainingLength(input_stream),
header.body_size);
return;
}