From b95f6e94afa0bcb48607812d9b6ef60fb0ce8edc Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Thu, 28 Nov 2024 11:34:10 +0900 Subject: [PATCH] OpenH264: throw out some logs to TRACE level --- xrdp/xrdp_encoder_openh264.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xrdp/xrdp_encoder_openh264.c b/xrdp/xrdp_encoder_openh264.c index 9623efaa55..32d0ba75cd 100644 --- a/xrdp/xrdp_encoder_openh264.c +++ b/xrdp/xrdp_encoder_openh264.c @@ -274,12 +274,12 @@ xrdp_encoder_openh264_encode(void *handle, int session, int left, int top, &pic1, &info); if (status != 0) { - LOG(LOG_LEVEL_INFO, "Failed to encode frame"); + LOG(LOG_LEVEL_TRACE, "OpenH264: Failed to encode frame"); return 3; } if (info.eFrameType == videoFrameTypeSkip) { - LOG(LOG_LEVEL_INFO, "frame was skipped!"); + LOG(LOG_LEVEL_TRACE, "OpenH264: frame was skipped!"); return 4; } lcdata_bytes = 0;