refactor: Remove commented-out error logging for validation failures in BaseView

1 parent 061b092e
......@@ -892,7 +892,7 @@ class BaseView(object):
except ValidationFailure as e:
log.error(f"Add cstruct: {e.cstruct}")
log.error(f"Add Error: {str(e.error)}")
log.error(f"Add Error: {str(e.asdict())}")
# log.error(f"Add Error: {str(e.asdict)}")
value = self.before_add()
if self.req.is_xhr:
error = e.error.asdict()
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!