Skip to content

Commit

Permalink
Merge pull request #43052 from mabartos/QKS-43051
Browse files Browse the repository at this point in the history
Show exception cause during logging filter initialization
  • Loading branch information
gastaldi authored Sep 5, 2024
2 parents 55aa069 + 6c4eb26 commit af853db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
});
Expand Down

0 comments on commit af853db

Please sign in to comment.