Closed golinko closed 1 year ago
This fix: fixes 524 has introduced a behaviour when exception stacktrace is always printed to the error print stream, so it is not possible to disable such logs (as it does not belong to any logger) without dirty hacks.
public ReactiveFeignException(Throwable cause, ReactiveHttpRequest request) { super(String.format(MESSAGE_PATTERN, request, cause.getMessage()), cause); this.request = request; cause.printStackTrace(); }
Is it possible to make it configurable or disable it at all?
This fix: fixes 524 has introduced a behaviour when exception stacktrace is always printed to the error print stream, so it is not possible to disable such logs (as it does not belong to any logger) without dirty hacks.
Is it possible to make it configurable or disable it at all?