While I was setting log4j for our new project I got the following exception:
1 | log4j:ERROR Could not instantiate class [org.apache.log4j.EnhancedPatternLayout]. |
2 | java.lang.ClassNotFoundException: org.apache.log4j.EnhancedPatternLayout |
I have log4j in my pom and its jar in my local repository so why EnhancedPatternLayout is missing?
This class is not in our log4j but in log4j-extras. You have to add the necessary extras jar to your pom.
2 | < groupid >log4j</ groupid > |
3 | < artifactid >apache-log4j-extras</ artifactid > |
I added the version 1.0 because version 1.1 requires log4j 1.2.16 while I'm using log4j 1.2.15.
Nice. Almost a year later, this was exactly what I needed! Thanks for sharing :)
ReplyDelete