-
Notifications
You must be signed in to change notification settings - Fork 115
Troubleshooting
coreywillwhat edited this page Apr 4, 2025
·
2 revisions
There are two methods to enable debug logging.
Enter the following into your configuration.yaml
logger:
default: warning
logs:
custom_components.audiconnect: debugThis option will persist through Home Assistant restarts.
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: debugClick PERFORM ACTION and you will see the debug messages start populating into your Home Assistant log.
Notes:
- You will need to add
logger:to yourconfiguration.yamlin order to use this. - These settings do not save and are reverted if you restart Home Assistant or set the level back to warning.