I am attempting to set up asynchronous logging (for performance reasons) within REST web methods that currently run in a liberty profile server.
In order to do this, I have set up the following property:
System.setProperty("Log4jContextSelector", "org.apache.logging.log4j.core.async.AsyncLoggerContextSelector");
My problem is that no matter where I do this, sometimes it works and logging is very fast, and sometimes it doesn't.
I have tried (a) in the constructor for the class containing all the REST web methods (b) in the filter doFilter method that gets called prior to the REST method (c) in the filter init method (d) in the REST method itself
None of these locations work consistently.
Can anyone offer an explanation for this behaviour, and if possible a suggested way of fixing the problem.
EDIT: It appears that log4j is being initialised prior to calling setProperty. So what I need to do is set up the property via liberty profile instead.
log4j2.contextSelector
as well asLog4JContextSelector
- and the documentation seems to mix the two in places. – Outclass