33#
44# [Configuration file format](https://docs.python.org/2/library/logging.config.html#configuration-file-format)
55#
6- # This file must contain sections called [loggers], [handlers] and [formatters] which identify by name the entities of
7- # each type which are defined in the file. For each such entity, there is a separate section which identifies how that
6+ # This file must contain sections called [loggers], [handlers] and [formatters] that identify by name the entities of
7+ # each type that are defined in the file. For each such entity, there is a separate section that identifies how that
88# entity is configured. Thus, for a logger named log01 in the [loggers] section, the relevant configuration details are
99# held in a section [logger_log01]. Similarly, a handler called hand01 in the [handlers] section will have its
1010# configuration held in a section called [handler_hand01], while a formatter called form01 in the [formatters] section
@@ -24,7 +24,7 @@ keys = <comma-separated strings>
2424 * The root logger must specify a level and a list of handlers .
2525
2626level = [critical | error | warning | info | debug | notset ]
27- * Can be one of debug , info , warning , error , critical or notset . For the root logger only , notset means that all
27+ * Can be one of debug , info , warning , error , critical , or notset . For the root logger only , notset means that all
2828 * messages will be logged . Level values are evaluated in the context of the logging package ’s namespace .
2929 * Defaults to warning .
3030
@@ -43,7 +43,7 @@ qualname = <string>
4343level = [critical | error | warning | info | debug | notset ]
4444 * Can be one of debug , info , warning , error , critical or notset . For the root logger only , notset means that all
4545 * messages will be logged . Level values are evaluated in the context of the logging package ’s namespace .
46- * Defaults to warning
46+ * Defaults to warning .
4747
4848handlers = < comma - separated strings >
4949 * A comma - separated list of handler names , which must appear in the [handlers ] section . These names must appear in
@@ -57,7 +57,7 @@ propagate = [0|1]
5757
5858[handlers ]
5959 * Specifies a list of handler keys .
60- * See [logging .handlers ](https :// docs .python .org / 2 / library / logging .handlers .html )
60+ * See [logging .handlers ](https :// docs .python .org / 2 / library / logging .handlers .html ).
6161
6262keys = < comma - separated strings >
6363 * A comma - separated list of handlers keys . Each key must have a corresponding [handler_ < string > ] section in the
@@ -77,7 +77,7 @@ class = <string>
7777
7878level = [critical | error | warning | info | debug | notset ]
7979 * Can be one of debug , info , warning , error , critical or notset . This value is interpreted as for loggers , and
80- * notset is taken to mean , "log everything."
80+ * notset is taken to mean , "log everything" .
8181
8282formatter = < string >
8383 * Specifies the key name of the formatter for this handler . If a name is specified , it must appear in the
@@ -86,7 +86,7 @@ formatter = <string>
8686
8787[formatters ]
8888 * Specifies a list of formatter keys .
89- * See [logging .formatters ](https :// docs .python .org / 2 / howto / logging .html #formatters)
89+ * See [logging .formatters ](https :// docs .python .org / 2 / howto / logging .html #formatters).
9090
9191keys = < comma - separated strings >
9292 * A comma - separated list of formatter keys . Each key must have a corresponding [formatter_ < string > ] section in the
0 commit comments