Log a warning instead of debug message for unknown errors

This commit is contained in:
Teemu Rytilahti 2025-01-03 20:31:20 +01:00
parent 6346980daa
commit 779f02e74d

View File

@ -160,7 +160,7 @@ class Vacuum(SmartModule):
try:
self._error_code = ErrorCode(error)
except ValueError:
_LOGGER.debug(
_LOGGER.warning(
"Unknown error code, please create an issue describing the error: %s",
error,
)