From 0e1961b34b2bce99a6414c7d1a67e967ba69a572 Mon Sep 17 00:00:00 2001
From: Eloi BAIL <eloi.bail@savoirfairelinux.com>
Date: Wed, 26 Aug 2015 13:58:24 -0400
Subject: [PATCH] daemon: remove ice busy trace

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

Issue: #79686
Change-Id: I64a328ff90c46df85c911af7f7f049f1c47e0035
---
 src/ice_transport.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/ice_transport.cpp b/src/ice_transport.cpp
index 3ef33b38b7..b2a38ad263 100644
--- a/src/ice_transport.cpp
+++ b/src/ice_transport.cpp
@@ -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());
     if (status != PJ_SUCCESS) {
         if (status == PJ_EBUSY) {
-            RING_WARN("ice send busy");
             errno = EAGAIN;
         } else {
             RING_ERR("ice send failed: %s", sip_utils::sip_strerror(status).c_str());
-- 
GitLab