Fix Typos in LOGGER (#2552)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Matheson Steplock 2021-02-10 15:53:37 -05:00 committed by GitHub
parent 40b34071e7
commit 100cfb57c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ class Core(CoreSysAttributes):
_LOGGER.warning("System running in a unsupported environment!")
if not self.healthy:
_LOGGER.critical(
"System running in a unhealthy state and need manual intervention!"
"System is running in an unhealthy state and needs manual intervention!"
)
# Check internet on startup
@ -171,7 +171,7 @@ class Core(CoreSysAttributes):
except SupervisorUpdateError as err:
_LOGGER.critical(
"Can't update Supervisor! This will break some Add-ons or affect "
"future version of Home Assistant!"
"future versions of Home Assistant!"
)
self.sys_resolution.unhealthy = UnhealthyReason.SUPERVISOR
self.sys_capture_exception(err)