diff --git a/src/sip/siptransport.cpp b/src/sip/siptransport.cpp index c150bffdcf7d66da4ee13e71a53d9fbca3519cae..c9b4e7b56eeb6df3d0d5c46fafb80e9b8f5b89d3 100644 --- a/src/sip/siptransport.cpp +++ b/src/sip/siptransport.cpp @@ -308,13 +308,13 @@ SipTransportBroker::getUdpTransport(const IpAddr& ipAddress) } else { // Transport still exists but have not been destroyed yet. - JAMI_WARN("Recycling transport %s", ipAddress.toString().c_str()); + JAMI_WARN("Recycling transport %s", ipAddress.toString(true).c_str()); auto ret = std::make_shared<SipTransport>(itp->second); it->second = ret; return ret; } } else { - JAMI_WARN("Cleaning up UDP transport %s", ipAddress.toString().c_str()); + JAMI_WARN("Cleaning up UDP transport %s", ipAddress.toString(true).c_str()); udpTransports_.erase(itp); } }