Commit 30af6406 authored by Christoph Ziebuhr's avatar Christoph Ziebuhr Committed by oroulet

Reduce loglevel when VariantType doesn't match

parent 07e6df2f
...@@ -809,7 +809,7 @@ class AddressSpace: ...@@ -809,7 +809,7 @@ class AddressSpace:
return True return True
if value.Value.VariantType == vtype: if value.Value.VariantType == vtype:
return True return True
_logger.critical("Write refused: Variant: %s with type %s does not have expected type: %s", _logger.warning("Write refused: Variant: %s with type %s does not have expected type: %s",
value.Value, value.Value.VariantType, attval.value.Value.VariantType) value.Value, value.Value.VariantType, attval.value.Value.VariantType)
return False return False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment