From: Jeremy C. Reed Date: Wed, 20 Jun 2012 15:27:10 +0000 (-0500) Subject: [master] improve usage statement for verbose X-Git-Tag: trac2351_base~226^2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e2da0cce1be68b63712d57e8b89ef5e7bcea78f;p=thirdparty%2Fkea.git [master] improve usage statement for verbose No review. This was very minor. --- diff --git a/src/bin/stats/stats.py.in b/src/bin/stats/stats.py.in index fd59c3cd00..b2e341726d 100755 --- a/src/bin/stats/stats.py.in +++ b/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) diff --git a/src/bin/stats/stats_httpd.py.in b/src/bin/stats/stats_httpd.py.in index 7e4da96d0c..8b13766cd6 100644 --- a/src/bin/stats/stats_httpd.py.in +++ b/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)