This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit e619cb02e8fe552456590de5e5ce180cbfcc36d4
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Feb 5 18:15:44 2022 -0500

    Better error reporting.
---
 .../src/main/java/org/apache/log4j/config/PropertiesConfiguration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/log4j-1.2-api/src/main/java/org/apache/log4j/config/PropertiesConfiguration.java
 
b/log4j-1.2-api/src/main/java/org/apache/log4j/config/PropertiesConfiguration.java
index d0ba733..405bd4b 100644
--- 
a/log4j-1.2-api/src/main/java/org/apache/log4j/config/PropertiesConfiguration.java
+++ 
b/log4j-1.2-api/src/main/java/org/apache/log4j/config/PropertiesConfiguration.java
@@ -609,7 +609,7 @@ public class PropertiesConfiguration extends 
Log4j1Configuration {
         try {
             return LoaderUtil.newInstanceOf(className);
         } catch (ReflectiveOperationException ex) {
-            LOGGER.error("Unable to create {} {} due to {}:{}", type, 
className, ex.getClass().getSimpleName(), ex.getMessage());
+            LOGGER.error("Unable to create {} {} due to {}:{}", type, 
className, ex.getClass().getSimpleName(), ex.getMessage(), ex);
             return null;
         }
     }

Reply via email to