Commit 5b27b028 authored by Olivier Crête's avatar Olivier Crête

conncheck: Make very frequent debug verbose-only

parent b7c2eabf
...@@ -3192,9 +3192,11 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream, ...@@ -3192,9 +3192,11 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream,
valid == STUN_VALIDATION_UNMATCHED_RESPONSE) { valid == STUN_VALIDATION_UNMATCHED_RESPONSE) {
for (i = agent->refresh_list; i; i = i->next) { for (i = agent->refresh_list; i; i = i->next) {
CandidateRefresh *r = i->data; CandidateRefresh *r = i->data;
nice_debug ("Comparing %p to %p, %p to %p and %p and %p to %p", r->stream,
stream, r->component, component, r->nicesock, r->candidate->sockptr, nice_debug_verbose ("Comparing %p to %p, %p to %p and %p and %p to %p",
nicesock); r->stream, stream, r->component, component, r->nicesock,
r->candidate->sockptr, nicesock);
if (r->stream == stream && r->component == component && if (r->stream == stream && r->component == component &&
(r->nicesock == nicesock || r->candidate->sockptr == nicesock)) { (r->nicesock == nicesock || r->candidate->sockptr == nicesock)) {
valid = stun_agent_validate (&r->stun_agent, &req, valid = stun_agent_validate (&r->stun_agent, &req,
......
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