We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af349cc commit 6f4157fCopy full SHA for 6f4157f
1 file changed
src/thread/utils/config.py
@@ -4,6 +4,7 @@ class Settings:
4
`Non Instantiable`
5
"""
6
7
+ VERBOSITY: bool = True
8
GRACEFUL_EXIT_ENABLED: bool = True
9
10
def __init__(self):
@@ -12,3 +13,7 @@ def __init__(self):
12
13
@staticmethod
14
def set_graceful_exit(enabled: bool = True):
15
Settings.GRACEFUL_EXIT_ENABLED = enabled
16
+
17
+ @staticmethod
18
+ def set_verbosity(verbosity: bool = True):
19
+ Settings.VERBOSITY = verbosity
0 commit comments