Browse Source

fine-tuned log levels (#827)

pull/832/head
Logan oos Even 3 years ago
committed by GitHub
parent
commit
4137441b5e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/edge_utils.c

4
src/edge_utils.c

@ -2882,11 +2882,11 @@ void process_udp (n2n_edge_t *eee, const struct sockaddr_in *sender_sock, const
default: default:
/* Not a known message type */ /* Not a known message type */
traceEvent(TRACE_WARNING, "unable to handle packet type %d: ignored", (signed int)msg_type); traceEvent(TRACE_INFO, "unable to handle packet type %d: ignored", (signed int)msg_type);
return; return;
} /* switch(msg_type) */ } /* switch(msg_type) */
} else if(from_supernode) /* if(community match) */ } else if(from_supernode) /* if(community match) */
traceEvent(TRACE_WARNING, "received packet with unknown community"); traceEvent(TRACE_INFO, "received packet with unknown community");
else else
traceEvent(TRACE_INFO, "ignoring packet with unknown community"); traceEvent(TRACE_INFO, "ignoring packet with unknown community");
} }

Loading…
Cancel
Save