Skip to content

Troubleshooting

coreywillwhat edited this page Apr 4, 2025 · 2 revisions

Enable Debugging

There are two methods to enable debug logging.

From Configuration File:

Enter the following into your configuration.yaml

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

This option will persist through Home Assistant restarts.

From Developer Tools:

You can also enable debugging while Home Assistant is running from the Services tab in the Developer Tools.
Go to Developer tools > Actions > logger.set_level. Click GO TO YAML MODE and enter into the data input as shown below.

service: logger.set_level
data:
   custom_components.audiconnect: debug

Click PERFORM ACTION and you will see the debug messages start populating into your Home Assistant log.

Notes:

  • You will need to add logger: to your configuration.yaml in order to use this.
  • These settings do not save and are reverted if you restart Home Assistant or set the level back to warning.

Clone this wiki locally