This message occurs during normal operation of the switch and shouldn't be cause for alarm. There's no reason for it to be at warn level and needlessly alarm users.
Signed-off-by: Ethan Jackson <[email protected]> --- vswitchd/bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index e9a1616..d8fa9d9 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -1614,7 +1614,7 @@ bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN], static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10); memcpy(ea, br->default_ea, ETH_ADDR_LEN); *hw_addr_iface = NULL; - VLOG_WARN_RL(&rl, "bridge %s: using default bridge Ethernet " + VLOG_INFO_RL(&rl, "bridge %s: using default bridge Ethernet " "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea)); } -- 1.7.9.5 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
