Browse Source

[master] improve usage statement for verbose

No review. This was very minor.
Jeremy C. Reed 13 years ago
parent
commit
0e2da0cce1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/bin/stats/stats.py.in
  2. 1 1
      src/bin/stats/stats_httpd.py.in

+ 1 - 1
src/bin/stats/stats.py.in

@@ -495,7 +495,7 @@ if __name__ == "__main__":
         parser = OptionParser()
         parser.add_option(
             "-v", "--verbose", dest="verbose", action="store_true",
-            help="display more about what is going on")
+            help="enable maximum debug logging")
         (options, args) = parser.parse_args()
         if options.verbose:
             isc.log.init("b10-stats", "DEBUG", 99)

+ 1 - 1
src/bin/stats/stats_httpd.py.in

@@ -826,7 +826,7 @@ if __name__ == "__main__":
         parser = OptionParser()
         parser.add_option(
             "-v", "--verbose", dest="verbose", action="store_true",
-            help="display more about what is going on")
+            help="enable maximum debug logging")
         (options, args) = parser.parse_args()
         if options.verbose:
             isc.log.init("b10-stats-httpd", "DEBUG", 99)