We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321e5fb commit da5e4b2Copy full SHA for da5e4b2
1 file changed
plugin/rules/constraint.py
@@ -57,7 +57,7 @@ def test(self, view_snapshot: ViewSnapshot) -> bool:
57
except AlwaysBoolException as e:
58
return e.value
59
except Exception as e:
60
- print(f"[{PLUGIN_NAME}] ConstraintRule Exception: {e}")
+ Logger.log(f"[{PLUGIN_NAME}] ConstraintRule Exception: {e}")
61
return False
62
63
return not result if self.inverted else result
0 commit comments