Skip to content

Commit

Permalink
🚧 Log warning instead of error for MessageParseError
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <[email protected]>
  • Loading branch information
ff137 committed Dec 5, 2024
1 parent c9022e2 commit 8a39204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acapy_agent/core/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ async def handle_v1_message(
except ProblemReportParseError:
pass # avoid problem report recursion
except MessageParseError as e:
self.logger.error(
self.logger.warning(
f"Message parsing failed: {str(e)}, sending problem report", exc_info=e
)
error_result = ProblemReport(
Expand Down

0 comments on commit 8a39204

Please sign in to comment.