Browse Source

Change options on verbosity.

Brian Aker 11 years ago
parent
commit
df2f54791c
1 changed files with 6 additions and 1 deletions
  1. 6 1
      libtest/gearmand.cc

+ 6 - 1
libtest/gearmand.cc

@@ -105,7 +105,12 @@ public:
     {
     {
       std::string buffer("--log-file=");
       std::string buffer("--log-file=");
       buffer+= arg;
       buffer+= arg;
-      app.add_option("--verbose=DEBUG");
+      // @note leave the logic as a placeholder
+#if defined(VCS_CHECKOUT) && VCS_CHECKOUT
+      app.add_option("--verbose=INFO");
+#else
+      app.add_option("--verbose=INFO");
+#endif
       app.add_option(buffer);
       app.add_option(buffer);
     }
     }
   }
   }