From: Ethan Jackson Date: Thu, 7 Feb 2013 00:45:38 +0000 (-0800) Subject: tunnel: Log tunneling changes at INFO level. X-Git-Tag: sliver-openvswitch-1.10.90-1~11^2~65 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=74a99109015a68a469539d7fa04b8f6c13a437bf;p=sliver-openvswitch.git tunnel: Log tunneling changes at INFO level. These log messages occur infrequently, and are quite useful when debugging problems after the fact. So they should be logged at info level which makes them more readily available. Signed-off-by: Ethan Jackson --- diff --git a/ofproto/tunnel.c b/ofproto/tunnel.c index ddfeedaca..d50cff805 100644 --- a/ofproto/tunnel.c +++ b/ofproto/tunnel.c @@ -407,8 +407,8 @@ tnl_port_mod_log(const struct tnl_port *tnl_port, const char *action) struct ds ds = DS_EMPTY_INITIALIZER; tnl_match_fmt(&tnl_port->match, &ds); - VLOG_DBG("%s tunnel port %s (%s)", action, tnl_port_get_name(tnl_port), - ds_cstr(&ds)); + VLOG_INFO("%s tunnel port %s (%s)", action, + tnl_port_get_name(tnl_port), ds_cstr(&ds)); ds_destroy(&ds); } }