mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Add note about case insensitivity of log levels
This commit is contained in:
committed by
Sylvain Bellemare
parent
45ae58448f
commit
9987041ac0
@@ -249,10 +249,11 @@ location.
|
||||
|
||||
### log.level_console
|
||||
The log level used to log to the console. Possible allowed values are the ones
|
||||
defined by [Python](https://docs.python.org/3.6/library/logging.html#levels):
|
||||
defined by [Python](https://docs.python.org/3.6/library/logging.html#levels),
|
||||
but case insensitive for convenience's sake:
|
||||
|
||||
```
|
||||
"CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG", "NOTSET"
|
||||
"critical", "error", "warning", "info", "debug", "notset"
|
||||
```
|
||||
|
||||
**Example**:
|
||||
@@ -270,10 +271,11 @@ defined by [Python](https://docs.python.org/3.6/library/logging.html#levels):
|
||||
|
||||
### log.level_logfile
|
||||
The log level used to log to the log file. Possible allowed values are the ones
|
||||
defined by [Python](https://docs.python.org/3.6/library/logging.html#levels):
|
||||
defined by [Python](https://docs.python.org/3.6/library/logging.html#levels),
|
||||
but case insensitive for convenience's sake:
|
||||
|
||||
```
|
||||
"CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG", "NOTSET"
|
||||
"critical", "error", "warning", "info", "debug", "notset"
|
||||
```
|
||||
|
||||
**Example**:
|
||||
|
||||
Reference in New Issue
Block a user