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.
1 parent 5df5719 commit f6a4f57Copy full SHA for f6a4f57
runpod/serverless/modules/logging.py
@@ -18,7 +18,7 @@ def log(message, level='INFO'):
18
'''
19
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'DEBUG').upper()
20
21
- if os.environ.get('RUNPOD_DEBUG', 'False') != 'true':
+ if os.environ.get('RUNPOD_DEBUG', 'true') != 'true':
22
return
23
24
if set_level == 'ERROR' and level != 'ERROR':
setup.cfg
@@ -1,6 +1,6 @@
1
[metadata]
2
name = runpod
3
-version = 0.8.1
+version = 0.8.2
4
description = Official Python library for RunPod API & SDK.
5
long_description = file: README.md
6
long_description_content_type = text/markdown
0 commit comments