From 0723c7f5dc8479dfb7e6d4a59d2bb2a7f9cccc52 Mon Sep 17 00:00:00 2001 From: kennedyshead Date: Tue, 23 Oct 2018 13:03:01 +0200 Subject: [PATCH] Just use debug instead of error if the binary_sensor does not get data (#17720) --- homeassistant/components/openuv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/openuv/__init__.py b/homeassistant/components/openuv/__init__.py index a45d9ceb0d6..52cf0ba75d5 100644 --- a/homeassistant/components/openuv/__init__.py +++ b/homeassistant/components/openuv/__init__.py @@ -210,7 +210,7 @@ class OpenUV: if data.get('from_time') and data.get('to_time'): self.data[DATA_PROTECTION_WINDOW] = data else: - _LOGGER.error( + _LOGGER.debug( 'No valid protection window data for this location') self.data[DATA_PROTECTION_WINDOW] = {}