Skip to content

Commit

Permalink
fix: changed the default logging level to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed May 11, 2023
1 parent 5e0603e commit 4f056a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runpod/serverless/modules/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def log(message, level='INFO'):
'''
Log message to stdout if RUNPOD_DEBUG is true.
'''
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'DEBUG').upper()
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'INFO').upper()
level = level.ljust(7)

if os.environ.get('RUNPOD_DEBUG', 'true').lower() != 'true':
Expand Down

0 comments on commit 4f056a6

Please sign in to comment.