Skip to content

Commit 4f056a6

Browse files
committed
fix: changed the default logging level to INFO
1 parent 5e0603e commit 4f056a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runpod/serverless/modules/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def log(message, level='INFO'):
1111
'''
1212
Log message to stdout if RUNPOD_DEBUG is true.
1313
'''
14-
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'DEBUG').upper()
14+
set_level = os.environ.get('RUNPOD_DEBUG_LEVEL', 'INFO').upper()
1515
level = level.ljust(7)
1616

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

0 commit comments

Comments
 (0)