Log4j2 configuration
Hi.
I want to use Log4j2 in my fusion web application. I added the two jar to my fusion web application:
log4j-api-2.0-beta3.jar
log4j-core-2.0-beta3.jar
I created a configuration file named log4j2.xml:
<?xml version="1.0" encoding="UTF-8"?>
<configuration status="warn" name="MyApp" packages="">
<appenders>
<File name="myAppFile" fileName="logs/myApp.log">
<PatternLayout>
<pattern>%d %p %C{1.} [%t] %m%n</pattern>
</PatternLayout>
</File>
</appenders>
<loggers>
<root level="trace">
<appender-ref ref="myAppFile"/>
</root>
</loggers>
</configuration>
At run time, does not create of the log file.
Which directory should have this file?
My JDev version: 11.1.2.30