Merge pull request #2972 from metalefty/logs
Suppress some logs when no errors
This commit is contained in:
commit
5ccabaf706
@ -392,8 +392,11 @@ xrdp_egfx_send_frame_start(struct xrdp_egfx *egfx, int frame_id, int timestamp)
|
|||||||
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_send_frame_start:");
|
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_send_frame_start:");
|
||||||
s = xrdp_egfx_frame_start(egfx->bulk, frame_id, timestamp);
|
s = xrdp_egfx_frame_start(egfx->bulk, frame_id, timestamp);
|
||||||
error = xrdp_egfx_send_s(egfx, s);
|
error = xrdp_egfx_send_s(egfx, s);
|
||||||
|
if (error != 0)
|
||||||
|
{
|
||||||
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_send_frame_start: xrdp_egfx_send_s "
|
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_send_frame_start: xrdp_egfx_send_s "
|
||||||
"error %d", error);
|
"error %d", error);
|
||||||
|
}
|
||||||
free_stream(s);
|
free_stream(s);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
@ -434,8 +437,11 @@ xrdp_egfx_send_frame_end(struct xrdp_egfx *egfx, int frame_id)
|
|||||||
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_send_frame_end:");
|
LOG(LOG_LEVEL_TRACE, "xrdp_egfx_send_frame_end:");
|
||||||
s = xrdp_egfx_frame_end(egfx->bulk, frame_id);
|
s = xrdp_egfx_frame_end(egfx->bulk, frame_id);
|
||||||
error = xrdp_egfx_send_s(egfx, s);
|
error = xrdp_egfx_send_s(egfx, s);
|
||||||
|
if (error != 0)
|
||||||
|
{
|
||||||
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_send_frame_end: xrdp_egfx_send_s "
|
LOG(LOG_LEVEL_DEBUG, "xrdp_egfx_send_frame_end: xrdp_egfx_send_s "
|
||||||
"error %d", error);
|
"error %d", error);
|
||||||
|
}
|
||||||
free_stream(s);
|
free_stream(s);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user