Bump to java 17 (micronaut dependency)

This commit is contained in:
Stephan Schnabel 2023-07-02 20:25:55 +02:00
parent 1678eadac2
commit 8043c3eb6d
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
8 changed files with 27 additions and 36 deletions

View file

@ -90,7 +90,7 @@ public class JsonLayout extends LayoutBase<ILoggingEvent> {
var throwableProxy = value.getThrowableProxy();
if (throwableProxy != null) {
var ex = throwableHandlingConverter.convert(value);
if (ex != null && !ex.equals("")) {
if (ex != null && !ex.isEmpty()) {
map.put(fieldName, ex);
}
}