ovn-northd: Fix log message style.
authorBen Pfaff <blp@nicira.com>
Thu, 16 Apr 2015 23:53:36 +0000 (16:53 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 17 Apr 2015 16:43:46 +0000 (09:43 -0700)
It's not necessary to name the program in a log message, because log
messages already include the program name (or are in a file named after
the program).

A new-line isn't needed at the end of a log message (and by convention we
leave it out) although it is harmless.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Justin Pettit <jpettit@nicira.com>
ovn/northd/ovn-northd.c

index 241d6ec..0de615d 100644 (file)
@@ -196,7 +196,7 @@ set_bindings(struct nbd_context *ctx)
 static void
 ovnnb_db_changed(struct nbd_context *ctx)
 {
-    VLOG_DBG("ovn-northd: ovn-nb db contents have changed.\n");
+    VLOG_DBG("ovn-nb db contents have changed.");
 
     set_bindings(ctx);
 }