Skip to content

Commit

Permalink
Use error for disabled reason (#1880)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Feb 7, 2021
1 parent 7eb1373 commit dec0b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/hacs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def disable(self, reason: HacsDisabledReason) -> None:
"""Disable HACS."""
self.system.disabled = True
self.system.disabled_reason = reason
self.log.info("HACS is disabled - %s", reason)
self.log.error("HACS is disabled - %s", reason)

def enable(self) -> None:
"""Enable HACS."""
Expand Down

0 comments on commit dec0b3b

Please sign in to comment.