Skip to content

Commit

Permalink
Change logging of unsupported rules to info level hon#112
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Sep 29, 2023
1 parent 61dd470 commit ca6e6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhon/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _create_parameters(
data["default"] = self._appliance.zone
if data.get("category") == "rule":
if "fixedValue" not in data:
_LOGGER.error("Rule not supported: %s", data)
_LOGGER.info("Rule not supported: %s", data)
else:
self._rules.append(HonRuleSet(self, data["fixedValue"]))
match data.get("typology"):
Expand Down

0 comments on commit ca6e6e2

Please sign in to comment.