I am trying to use log4j for the first time and I have configured it correctly, I just wanted to know how can I print the details of the argument passed as second parameter:
LogManager.getLogger(SomeName.class.getName()).info(message, detail);
and my configuration appender is:
<File name="file1" fileName="output.log">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</File>
I think there should be some switch within the pattern after %msg
if I want to log the detail there. But I am not sure what or how.