Skip to content

Commit

Permalink
Switching encoder logging statements to LOG not LOG_DEVEL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexarian committed Jan 8, 2024
1 parent 7b208aa commit c23bf5b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions xrdp/xrdp_encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ xrdp_encoder_create(struct xrdp_mm *mm)

if (client_info->jpeg_codec_id != 0)
{
LOG_DEVEL(LOG_LEVEL_INFO, "xrdp_encoder_create: "
"starting jpeg codec session");
LOG(LOG_LEVEL_INFO, "xrdp_encoder_create: starting jpeg codec session");
self->codec_id = client_info->jpeg_codec_id;
self->in_codec_mode = 1;
self->codec_quality = client_info->jpeg_prop[0];
Expand Down Expand Up @@ -140,8 +139,7 @@ xrdp_encoder_create(struct xrdp_mm *mm)
}
else if (client_info->rfx_codec_id != 0)
{
LOG_DEVEL(LOG_LEVEL_INFO, "xrdp_encoder_create: "
"starting rfx codec session");
LOG(LOG_LEVEL_INFO, "xrdp_encoder_create: starting rfx codec session");
self->codec_id = client_info->rfx_codec_id;
self->in_codec_mode = 1;
client_info->capture_code = 2;
Expand All @@ -153,8 +151,7 @@ xrdp_encoder_create(struct xrdp_mm *mm)
#endif
else if (client_info->h264_codec_id != 0)
{
LOG_DEVEL(LOG_LEVEL_INFO, "xrdp_encoder_create: "
"starting h264 codec session");
LOG(LOG_LEVEL_INFO, "xrdp_encoder_create: starting h264 codec session");
self->codec_id = client_info->h264_codec_id;
self->in_codec_mode = 1;
client_info->capture_code = 3;
Expand Down

0 comments on commit c23bf5b

Please sign in to comment.