We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2f74aa commit 876c02eCopy full SHA for 876c02e
custom_components/tesla_custom/__init__.py
@@ -144,7 +144,7 @@ async def async_setup_entry(hass, config_entry):
144
if config.get(CONF_API_PROXY_CERT):
145
try:
146
SSL_CONTEXT.load_verify_locations(config[CONF_API_PROXY_CERT])
147
- _LOGGER.debug(SSL_CONTEXT)
+ _LOGGER.debug("Trusting CA: %s", SSL_CONTEXT.get_ca_certs()[-1])
148
except (FileNotFoundError, ssl.SSLError):
149
_LOGGER.warning(
150
"Unable to load custom SSL certificate from %s",
0 commit comments