From 71e5fdc691586fd26b739adefd324ffa32f59be8 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 4 Jun 2009 11:04:24 -0700 Subject: [PATCH] vswitch: Remove development debug logging code that escaped. --- vswitchd/bridge.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 2353c344..f0d85180 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -569,16 +569,6 @@ bridge_reconfigure(void) LIST_FOR_EACH (br, struct bridge, node, &all_bridges) { brstp_reconfigure(br); } - LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) { - for (i = 0; i < br->n_ports; i++) { - struct port *port = br->ports[i]; - for (j = 0; j < port->n_ifaces; j++) { - struct iface *iface = port->ifaces[j]; - VLOG_WARN("dp%u: %s on port %d", - dpif_id(&br->dpif), iface->name, iface->dp_ifidx); - } - } - } } static void -- 2.30.2