Log file and debug logging

Like any other integration, the HACS integration logs to the home-assistant.log file.

To enable debug logging, add the following line to your configuration.yaml:

configuration.yaml
logger:
  default: info
  logs:
    custom_components.hacs: debug
    aiogithubapi: debug

You might wonder why you cannot just use the Enable debug logging button in the Home Assistant UI. The logs created via this option only include the custom_components.hacs logs, but not other parts like aiogithubapi or logs written during the start-up of HACS or Home Assistant. For this reason, you need to define debug logging in your configuration.yaml file. Don't forget to remove the entry once you're done troubleshooting.