I'm trying to configure quarkus to log exceptions with limited or no stacktrace, just the exception class and message. I've tried changing the property:
quarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %m%n: logs message, exception and stacktracequarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n: same as previousquarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%n: does not log anything related to the exception.
Is there some way to achieve this?