aboutsummaryrefslogtreecommitdiff
path: root/lib/bond.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2012-10-25 13:46:57 -0700
committerBen Pfaff <blp@nicira.com>2013-02-11 13:22:20 -0800
commitd28b9ead2f167c73c78f71388f02aa6c1af8f7bd (patch)
treecd30228c50ff476999cbc7cf3b993c5e4bc4b11a /lib/bond.c
parent692bf61aa9294b50e5891e24dcc9f5d90b6f12cd (diff)
bond: Reduce log level from WARN to INFO for interface status updates.
An interface coming up or going down isn't a big deal. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'lib/bond.c')
-rw-r--r--lib/bond.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bond.c b/lib/bond.c
index ef7d28d4..aca18a2d 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);
}
}