From: Jon Parise Date: Sat, 26 Nov 2011 16:21:04 +0000 (-0500) Subject: Mention the 'debug' level in --logging's help. X-Git-Tag: v2.2.0~73^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d81851cdaa785143764fcb11635d63c2ed391256;p=thirdparty%2Ftornado.git Mention the 'debug' level in --logging's help. There are a number of places in the Tornado code base where log messages are logged at the logging.DEBUG level. It's useful to advertise this here. --- diff --git a/tornado/options.py b/tornado/options.py index a230347a5..f9f472fff 100644 --- a/tornado/options.py +++ b/tornado/options.py @@ -401,7 +401,7 @@ define("help", type=bool, help="show this help information") define("logging", default="info", help=("Set the Python log level. If 'none', tornado won't touch the " "logging configuration."), - metavar="info|warning|error|none") + metavar="debug|info|warning|error|none") define("log_to_stderr", type=bool, default=None, help=("Send log output to stderr (colorized if possible). " "By default use stderr if --log_file_prefix is not set and "