We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4032b14 commit 42017d3Copy full SHA for 42017d3
1 file changed
src/spaceone/monitoring/connector/google_cloud_connector/__init__.py
@@ -82,9 +82,9 @@ def _create_http_client(self):
82
https_proxy = os.environ.get("HTTPS_PROXY") or os.environ.get("https_proxy")
83
84
if https_proxy:
85
- # _LOGGER.info(
86
- # f"** Using proxy in environment variable HTTPS_PROXY/https_proxy: {https_proxy}"
87
- # ) # TOO MANY LOGGING
+ _LOGGER.info(
+ f"** Using proxy in environment variable HTTPS_PROXY/https_proxy: {https_proxy}"
+ )
88
try:
89
proxy_url = https_proxy.replace("http://", "").replace("https://", "")
90
if ":" in proxy_url:
0 commit comments