diff --git a/core/runtime/src/main/java/io/quarkus/runtime/logging/LoggingSetupRecorder.java b/core/runtime/src/main/java/io/quarkus/runtime/logging/LoggingSetupRecorder.java index 6108893f04013..1dd3b0e396c80 100644 --- a/core/runtime/src/main/java/io/quarkus/runtime/logging/LoggingSetupRecorder.java +++ b/core/runtime/src/main/java/io/quarkus/runtime/logging/LoggingSetupRecorder.java @@ -269,7 +269,7 @@ public void accept(String name, String className) { try { nameToFilter.put(name, logFilterFactory.create(className)); } catch (Exception e) { - throw new RuntimeException("Unable to create instance of Logging Filter '" + className + "'"); + throw new RuntimeException("Unable to create instance of Logging Filter '" + className + "'", e); } } });