bridge: Don't log flow miss model on every reconfiguration.
authorBen Pfaff <blp@nicira.com>
Wed, 26 Jun 2013 15:35:14 +0000 (08:35 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 28 Jun 2013 16:01:23 +0000 (09:01 -0700)
Signed-off-by: Ben Pfaff <blp@nicira.com>
vswitchd/bridge.c

index 4ac2b26..578c678 100644 (file)
@@ -816,11 +816,8 @@ bridge_configure_flow_miss_model(const char *opt)
     if (opt) {
         if (strcmp(opt, "with-facets")) {
             model = OFPROTO_HANDLE_MISS_WITH_FACETS;
-            VLOG_INFO("Handling all flow misses by creating facets.\n");
-        }
-        if (strcmp(opt, "without-facets")) {
+        } else if (strcmp(opt, "without-facets")) {
             model = OFPROTO_HANDLE_MISS_WITHOUT_FACETS;
-            VLOG_INFO("Handling all flow misses without creating facets.\n");
         }
     }