I’ve developed a component and wanted to add it’s own logs.
In the manifest.yaml I’ve put:
"loggers": ["jvc_dila"],
then in the code I have
_LOGGER.warning(
"Timeout (%s second(s)) waiting for a response after PJREQ"
"reading from %s on port %s",
self._config[CONF_TIMEOUT],
self._config[CONF_HOST],
self._config[CONF_PORT],
)
here my config.yaml
default: info
logs:
custom_components.jvc_dila.common: debug
homeassistant.components.cloud: debug
but I cannot find it anywhere.
what am I doing wrong?