Describe the bug
|
logging.basicConfig(level=logging.INFO, format=FMT, handlers=[logging.StreamHandler()]) |
This line causes logging stuff to show-up on screen as long as logging hasn't been configured already before an import runpodcall.
To Reproduce
from logging import getLogger
logger = getLogger(__name__)
logger.info('invisible')
import runpod
logger.info('visible!')
Expected behavior
Nothing should be visible when running the above script. However, because of the aforementioned line, you see
temp.py :7 2026-03-20 19:28:03,684 visible!
Describe the bug
runpod-python/runpod/serverless/utils/rp_upload.py
Line 24 in 8d08f24
This line causes logging stuff to show-up on screen as long as logging hasn't been configured already before an
import runpodcall.To Reproduce
Expected behavior
Nothing should be visible when running the above script. However, because of the aforementioned line, you see