ovsdb-client: Make "dump" print table names in default output format too.
[openvswitch] / ovsdb / ovsdb-client.c
index a601209d236b4de08b197a19294a992ffcbdbb32..326e3b1a5595b45dde664e4babeb1cb5e2bdcbb7 100644 (file)
@@ -41,9 +41,9 @@
 #include "table.h"
 #include "timeval.h"
 #include "util.h"
-
 #include "vlog.h"
-#define THIS_MODULE VLM_ovsdb_client
+
+VLOG_DEFINE_THIS_MODULE(ovsdb_client)
 
 /* --format: Output formatting. */
 static enum {
@@ -74,7 +74,6 @@ main(int argc, char *argv[])
 {
     proctitle_init(argc, argv);
     set_program_name(argv[0]);
-    vlog_init();
     parse_options(argc, argv);
     signal(SIGPIPE, SIG_IGN);
     run_command(argc - optind, argv + optind, all_commands);
@@ -442,6 +441,10 @@ table_print_table__(const struct table *table)
         putchar('\n');
     }
 
+    if (table->caption) {
+        puts(table->caption);
+    }
+
     if (output_headings) {
         for (x = 0; x < table->n_columns; x++) {
             const struct column *column = &table->columns[x];