From 7e305f9e2421f48b61e7f56c0c474f4b275ccc2f Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Wed, 21 Feb 2024 14:16:52 +0900 Subject: [PATCH] GFX: Relegate some logs to LOG_LEVEL_DEBUG --- xrdp/xrdp_egfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xrdp/xrdp_egfx.c b/xrdp/xrdp_egfx.c index 8fe0cda0..4e878654 100644 --- a/xrdp/xrdp_egfx.c +++ b/xrdp/xrdp_egfx.c @@ -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) {