From d81851cdaa785143764fcb11635d63c2ed391256 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Sat, 26 Nov 2011 11:21:04 -0500 Subject: [PATCH] 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. --- tornado/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 " -- 2.47.2