We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf57fd0 + 756d3a9 commit ff7b766Copy full SHA for ff7b766
1 file changed
main.py
@@ -39,6 +39,10 @@
39
PIPELINE_MODULES = {}
40
PIPELINE_NAMES = {}
41
42
+#Add GLOBAL_LOG_LEVEL for Pipeplines
43
+log_level = os.getenv('GLOBAL_LOG_LEVEL', 'INFO').upper()
44
+logging.basicConfig(level=LOG_LEVELS[log_level])
45
+
46
47
def get_all_pipelines():
48
pipelines = {}
0 commit comments