Merge pull request #2954 from metalefty/gfx_log

GFX: Relegate some logs to LOG_LEVEL_DEBUG
This commit is contained in:
metalefty 2024-02-21 19:11:52 +09:00 committed by GitHub
commit 82bbf7ef03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -769,7 +769,7 @@ xrdp_egfx_process_frame_ack(struct xrdp_egfx *egfx, struct stream *s)
in_uint32_le(s, queueDepth);
in_uint32_le(s, intframeId);
in_uint32_le(s, totalFramesDecoded);
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_process_frame_ack: queueDepth %d"
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_process_frame_ack: queueDepth %d"
" intframeId %d totalFramesDecoded %d",
queueDepth, intframeId, totalFramesDecoded);
if (egfx->frame_ack != NULL)
@ -869,7 +869,7 @@ xrdp_egfx_process(struct xrdp_egfx *egfx, struct stream *s)
in_uint16_le(s, flags);
in_uint32_le(s, pduLength);
s->end = holdp + pduLength;
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_process: cmdId 0x%x flags %d"
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_process: cmdId 0x%x flags %d"
" pduLength %d", cmdId, flags, pduLength);
if (pduLength < 8)
{