Merge pull request #4393 from nfedera/fix-remove-expensive-channel-send-debug

disabled expensive debug call in channel send
This commit is contained in:
Norbert Federa 2018-01-31 13:31:21 +01:00 committed by GitHub
commit d5ef9629a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ BOOL freerdp_channel_send(rdpRdp* rdp, UINT16 channelId, BYTE* data, int size)
Stream_Write(s, data, chunkSize);
WLog_DBG(TAG, "%s: sending data (flags=0x%x size=%d)", __FUNCTION__, flags, size);
/* WLog_DBG(TAG, "%s: sending data (flags=0x%x size=%d)", __FUNCTION__, flags, size); */
if (!rdp_send(rdp, s, channelId))
{
Stream_Release(s);