Add "none" as a log level to support quieting the logging messages. Refs #1470.
This commit is contained in:
parent
356808b02c
commit
8c12c47d3e
|
@ -117,6 +117,7 @@ class Logging(LoggingLoggerClass):
|
|||
return rv
|
||||
|
||||
levels = {
|
||||
"none": logging.NOTSET,
|
||||
"info": logging.INFO,
|
||||
"warn": logging.WARNING,
|
||||
"warning": logging.WARNING,
|
||||
|
|
Loading…
Reference in New Issue