Imported module logs for custom component

Just wrote a custom component which uses/imports a python API module that also i wrote… Component works well in hassio except for some bugs. I try to debug it; when i use:

logger:
  default: warning
  logs:
     custom_components.crowipmodule: debug

i only get the debug messages from HA integration; but not from the imported API module in the custom component. The imported API module has all LOGGER commands working well when it is used seperately in some other python projects.

So, how can i see the debug logs from imported API module in hassio?

Use the logger name that is used in that module, like:

crowipmodule: debug

Wow! Such a fast response and it works great… Thanks a lot ludeeus…

For future reference to all others; my custom component name was ‘crowipmodule’ but the API module it uses was ‘pycrowipmodule’. So i used:

pycrowipmodule: debug

instead to make it work…