Commit 66229223 authored by Fabrice Bellet's avatar Fabrice Bellet Committed by Olivier Crête

conncheck: drop some excessively verbose comment

parent 19c599a0
...@@ -1984,10 +1984,6 @@ local_candidate_and_socket_compatible (NiceAgent *agent, ...@@ -1984,10 +1984,6 @@ local_candidate_and_socket_compatible (NiceAgent *agent,
*/ */
ret = (lcand->sockptr == socket); ret = (lcand->sockptr == socket);
nice_debug_verbose ("Agent %p : socket %p and local cand %p %s.",
agent, socket, lcand,
ret ? "compatible" : "not compatible");
return ret; return ret;
} }
...@@ -2019,10 +2015,6 @@ remote_candidate_and_socket_compatible (NiceAgent *agent, ...@@ -2019,10 +2015,6 @@ remote_candidate_and_socket_compatible (NiceAgent *agent,
if (lcand && ret) if (lcand && ret)
ret = (conn_check_match_transport (lcand->transport) == rcand->transport); ret = (conn_check_match_transport (lcand->transport) == rcand->transport);
nice_debug_verbose ("Agent %p : socket %p and remote cand %p %s.",
agent, socket, rcand,
ret ? "compatible" : "not compatible");
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment