From 74a99109015a68a469539d7fa04b8f6c13a437bf Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Wed, 6 Feb 2013 16:45:38 -0800 Subject: [PATCH] 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 --- ofproto/tunnel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.47.0