]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Mention the 'debug' level in --logging's help. 403/head
authorJon Parise <jon@indelible.org>
Sat, 26 Nov 2011 16:21:04 +0000 (11:21 -0500)
committerJon Parise <jon@indelible.org>
Sat, 26 Nov 2011 16:21:04 +0000 (11:21 -0500)
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

index a230347a5bdb7f776614af12f9f3cc20f6deffb9..f9f472fff77d41bce8a66763334578eece0c76a4 100644 (file)
@@ -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 "