We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31001f9 + 2d5f446 commit 566aaabCopy full SHA for 566aaab
1 file changed
cfbs/main.py
@@ -41,6 +41,8 @@ def init_logging(level):
41
log.basicConfig(level=log.INFO, format=format)
42
elif level == "debug":
43
log.basicConfig(level=log.DEBUG, format=format)
44
+ elif level == "none":
45
+ log.disable(level=log.CRITICAL)
46
else:
47
raise ValueError("Unknown log level: {}".format(level))
48
0 commit comments