ovn-controller: Don't log every interface missing "iface-id".
authorJustin Pettit <jpettit@nicira.com>
Sat, 25 Apr 2015 17:42:44 +0000 (10:42 -0700)
committerJustin Pettit <jpettit@nicira.com>
Fri, 1 May 2015 06:08:35 +0000 (23:08 -0700)
Tunnels create a lot of interfaces without an "external-id:iface-id", so
logging each interface missing one (even at debug) seems unnecessary.

Signed-off-by: Justin Pettit <jpettit@nicira.com>
Acked-by: Russell Bryant <rbryant@redhat.com>
Acked-by: Ben Pfaff <blp@nicira.com>
ovn/controller/bindings.c

index dcaee6c..dc1da5a 100644 (file)
@@ -64,7 +64,6 @@ get_local_iface_ids(struct controller_ctx *ctx, struct sset *lports)
             iface_rec = port_rec->interfaces[j];
             iface_id = smap_get(&iface_rec->external_ids, "iface-id");
             if (!iface_id) {
-                VLOG_DBG("Could not find iface-id for '%s'", iface_rec->name);
                 continue;
             }
             sset_add(lports, iface_id);