X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbond.c;h=aca18a2d8c96ee3a91ed6e2b59f4d1e6cb8730f7;hb=3efb60637b9a6741e7e5b7f04e4daa4d2464d8b3;hp=ef7d28d46e0deff2633ae60e6da2ff4d047fd890;hpb=df53d41c6da0ef093272666091e74155bbaf4d11;p=sliver-openvswitch.git diff --git a/lib/bond.c b/lib/bond.c index ef7d28d46..aca18a2d8 100644 --- a/lib/bond.c +++ b/lib/bond.c @@ -1266,12 +1266,12 @@ bond_enable_slave(struct bond_slave *slave, bool enable, struct tag_set *tags) if (enable != slave->enabled) { slave->enabled = enable; if (!slave->enabled) { - VLOG_WARN("interface %s: disabled", slave->name); + VLOG_INFO("interface %s: disabled", slave->name); if (tags) { tag_set_add(tags, slave->tag); } } else { - VLOG_WARN("interface %s: enabled", slave->name); + VLOG_INFO("interface %s: enabled", slave->name); slave->tag = tag_create_random(); } } @@ -1437,7 +1437,7 @@ bond_choose_active_slave(struct bond *bond, struct tag_set *tags) bond->send_learning_packets = true; } else if (old_active_slave) { - VLOG_WARN_RL(&rl, "bond %s: all interfaces disabled", bond->name); + VLOG_INFO_RL(&rl, "bond %s: all interfaces disabled", bond->name); } }