Skip to content

Commit f6a4f57

Browse files
committed
fix: logging
1 parent 5df5719 commit f6a4f57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runpod/serverless/modules/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def log(message, level='INFO'):
1818
'''
1919
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'DEBUG').upper()
2020

21-
if os.environ.get('RUNPOD_DEBUG', 'False') != 'true':
21+
if os.environ.get('RUNPOD_DEBUG', 'true') != 'true':
2222
return
2323

2424
if set_level == 'ERROR' and level != 'ERROR':

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = runpod
3-
version = 0.8.1
3+
version = 0.8.2
44
description = Official Python library for RunPod API & SDK.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)