Apparently, there is a new constructor for the log4j FileAppender class.
In the past, one could choose between several constructors and wasn't forced to pass more than three parameters to the constructor (see: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/FileAppender.html) .
Now, the FileAppender class has been moved from org.apache.log4j to org.apache.logging.log4j.core.appender.
Now the constructor for FileAppender looks as follows:
FileAppender(final String name, final Layout<? extends Serializable> layout, final Filter filter,
final FileManager manager, final String filename, final boolean ignoreExceptions,
final boolean immediateFlush, final Advertiser advertiser)
What is a Filter and what is an Advertiser? (Where is the documentation on this new kind of FileAppender anyway - I didn't find anything.)
(I'm trying to write an initialisation servlet for the logger.)