Make this an error instead of an info
This commit is contained in:
parent
79ca47640e
commit
c525ee9daa
1 changed files with 4 additions and 4 deletions
|
@ -420,10 +420,10 @@ def setup(hass, config):
|
||||||
node.set_config_param(param, selection, size)
|
node.set_config_param(param, selection, size)
|
||||||
else:
|
else:
|
||||||
if selection > i:
|
if selection > i:
|
||||||
_LOGGER.info("Config parameter selection does not exist! "
|
_LOGGER.error("Config parameter selection does not exist! "
|
||||||
"Please check zwcfg_[home_id].xml in "
|
"Please check zwcfg_[home_id].xml in "
|
||||||
"your homeassistant config directory. "
|
"your homeassistant config directory. "
|
||||||
"Available selections are 0 to %s", i)
|
"Available selections are 0 to %s", i)
|
||||||
return
|
return
|
||||||
node.set_config_param(param, selection, size)
|
node.set_config_param(param, selection, size)
|
||||||
_LOGGER.info("Setting config parameter %s on Node %s "
|
_LOGGER.info("Setting config parameter %s on Node %s "
|
||||||
|
|
Loading…
Add table
Reference in a new issue