Where are my logs? custom component logging - unable to find them

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?

1 Like

i have an example here in my repository to enable logging for custom integration: GitHub - fuatakgun/eufy_security: Home Assistant integration to manage Eufy Security devices as cameras, home base stations, doorbells, motion and contact sensors.

All logs are written inside homeassistant.log file

thank you @anon63427907 is similar to what I was doing.
Following some of the guidelines I tried to use a different configuration to have them on a dedicated log but I’m not able to have it working