Skip to content

Commit

Permalink
Do not log error in AiServiceMethodImplementationSupport
Browse files Browse the repository at this point in the history
The error is thrown anyway and handled by the error handler.
Logging here makes the error logged twice in your typical REST setup
(and probably any setup).

Fixes #863
  • Loading branch information
gsmet committed Sep 4, 2024
1 parent ffc0c69 commit 8ca7a3d
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public Object implement(Input input) {
}
return result;
} catch (Exception e) {
log.errorv(e, "Execution of {0}#{1} failed", createInfo.getInterfaceName(), createInfo.getMethodName());
if (audit != null) {
audit.onFailure(e);
auditService.complete(audit);
Expand Down

0 comments on commit 8ca7a3d

Please sign in to comment.