Skip to content
Snippets Groups Projects
Commit 0e1961b3 authored by Eloi Bail's avatar Eloi Bail Committed by Guillaume Roguez
Browse files

daemon: remove ice busy trace

Remove a trace warning that pjsip return EBUSY because it adds useless
display processing.

Issue: #79686
Change-Id: I64a328ff90c46df85c911af7f7f049f1c47e0035
parent 9cc58d13
Branches
Tags
No related merge requests found
...@@ -738,7 +738,6 @@ IceTransport::send(int comp_id, const unsigned char* buf, size_t len) ...@@ -738,7 +738,6 @@ IceTransport::send(int comp_id, const unsigned char* buf, size_t len)
auto status = pj_ice_strans_sendto(icest_.get(), comp_id+1, buf, len, remote.pjPtr(), remote.getLength()); auto status = pj_ice_strans_sendto(icest_.get(), comp_id+1, buf, len, remote.pjPtr(), remote.getLength());
if (status != PJ_SUCCESS) { if (status != PJ_SUCCESS) {
if (status == PJ_EBUSY) { if (status == PJ_EBUSY) {
RING_WARN("ice send busy");
errno = EAGAIN; errno = EAGAIN;
} else { } else {
RING_ERR("ice send failed: %s", sip_utils::sip_strerror(status).c_str()); RING_ERR("ice send failed: %s", sip_utils::sip_strerror(status).c_str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment