From c525ee9daaefe580154eaade5edce87908d63bb8 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Sat, 6 May 2017 23:11:11 -0700 Subject: [PATCH] Make this an error instead of an info --- homeassistant/components/zwave/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/zwave/__init__.py b/homeassistant/components/zwave/__init__.py index 19a813c1ed6..4033e195be0 100755 --- a/homeassistant/components/zwave/__init__.py +++ b/homeassistant/components/zwave/__init__.py @@ -420,10 +420,10 @@ def setup(hass, config): node.set_config_param(param, selection, size) else: if selection > i: - _LOGGER.info("Config parameter selection does not exist! " - "Please check zwcfg_[home_id].xml in " - "your homeassistant config directory. " - "Available selections are 0 to %s", i) + _LOGGER.error("Config parameter selection does not exist! " + "Please check zwcfg_[home_id].xml in " + "your homeassistant config directory. " + "Available selections are 0 to %s", i) return node.set_config_param(param, selection, size) _LOGGER.info("Setting config parameter %s on Node %s "