Skip to content

Commit

Permalink
fix: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Jan 26, 2023
1 parent 5df5719 commit f6a4f57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runpod/serverless/modules/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def log(message, level='INFO'):
'''
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'DEBUG').upper()

if os.environ.get('RUNPOD_DEBUG', 'False') != 'true':
if os.environ.get('RUNPOD_DEBUG', 'true') != 'true':
return

if set_level == 'ERROR' and level != 'ERROR':
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = runpod
version = 0.8.1
version = 0.8.2
description = Official Python library for RunPod API & SDK.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit f6a4f57

Please sign in to comment.