Skip to content
Snippets Groups Projects
Commit 787e86c6 authored by Ryan Izard's avatar Ryan Izard
Browse files

Change broadcast port warning to debug log level

parent aa580d39
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ public class TopologyInstance {
*/
public Set<OFPort> swBroadcastPorts(DatapathId sw) {
if (!broadcastPortMap.containsKey(sw) || broadcastPortMap.get(sw) == null) {
log.warn("Could not locate broadcast ports for switch {}", sw);
log.debug("Could not locate broadcast ports for switch {}", sw);
return Collections.emptySet();
} else {
if (log.isDebugEnabled()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment