You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
When I use
download_as_string()method or similar,logging.rootlogger is being activated by callinglogging.info()on linepython-storage/google/cloud/storage/blob.py
Line 926 in 63ff233
Environment details
3.8.620.2.4google-cloud-storageversion:1.33.0Steps to reproduce
logger.info("test")(nothing should happen)logger.info("test")one more timeHow to fix it
you need to use your own logger (e.g. using
logging.getLogger(__name__)instead of root logger.