diff --git a/libv4l-rockchip_v2/libv4l-encplugin-rockchip.c b/libv4l-rockchip_v2/libv4l-encplugin-rockchip.c
index 332752736f6589cffdc1881db1e69143a94705b0..80fa37a3dab92b59f38a4b01e68106ffdf349345 100644
--- a/libv4l-rockchip_v2/libv4l-encplugin-rockchip.c
+++ b/libv4l-rockchip_v2/libv4l-encplugin-rockchip.c
@@ -490,14 +490,14 @@ static int ioctl_s_ctrl_locked(struct encoder_context *ctx, int fd,
 		runtime_param_ptr->keyframe_request = true;
 		return 0;
 	case V4L2_CID_MPEG_VIDEO_BITRATE:
-		VLOG_FD(0, "Setting bitrate to %d", ctrl->value);
+		VLOG_FD(2, "Setting bitrate to %d", ctrl->value);
 		runtime_param_ptr->bitrate = ctrl->value;
 		return 0;
 	case V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR:
 		ctx->init_param.h264e.h264_sps_pps_before_idr = ctrl->value;
 		return 0;
 	case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
-		VLOG_FD(0, "setting H264 profile %d.", ctrl->value);
+		VLOG_FD(2, "setting H264 profile %d.", ctrl->value);
 		ctx->init_param.h264e.v4l2_h264_profile = ctrl->value;
 		break;
 	case V4L2_CID_MPEG_VIDEO_H264_LEVEL: