I want to migrate from Log4j 1.x to Log4j 2.x. So I\'m trying to use log4j-1.2-api.jar
as mentioned here. My application has an implementation of org.apa
When upgrading Log4j, I simply used LogEvent instead of LoggingEvent.
I had removed AppenderSkeleton and replaced it with AbstractAppender. AppenderSkeleton
's append(LoggingEvent event)
method appears in AbstractAppender
as append(LogEvent event)
, which was my cue to use LogEvent
instead of LoggingEvent
.