Skip to content

Commit

Permalink
netlink-conntrack: Change unsupported IPPROTO log to debug.
Browse files Browse the repository at this point in the history
No point littering the logs with messages on an unsupported protocol,
so change the log to debug level.

Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
  • Loading branch information
jrajahalme committed Mar 29, 2017
1 parent 7ffd7b2 commit d50c810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/netlink-conntrack.c
Expand Up @@ -463,8 +463,8 @@ nl_ct_parse_tuple_proto(struct nlattr *nla, struct ct_dpif_tuple *tuple)
tuple->dst_port = nl_attr_get_be16(attrs[CTA_PROTO_DST_PORT]);
} else {
/* Unsupported IPPROTO and no ports, leave them zeroed.
* We have parsed the ip_proto, so this is not a total failure. */
VLOG_INFO_RL(&rl, "Unsupported L4 protocol: %u.", tuple->ip_proto);
* We have parsed the ip_proto, so this is not a failure. */
VLOG_DBG_RL(&rl, "Unsupported L4 protocol: %u.", tuple->ip_proto);
}
} else {
VLOG_ERR_RL(&rl, "Could not parse nested tuple protocol options. "
Expand Down

0 comments on commit d50c810

Please sign in to comment.