blob: 4bd1b4b26618ae75e9d8cd18024a72a54493a6ea [file] [log] [blame]
Apache Ignite Log4J Module
--------------------------
Apache Ignite Log4J module provides IgniteLogger implementation based on Apache Log4J.
To enable Log4J module when starting a standalone node, move 'optional/ignite-log4j' folder to
'libs' folder before running 'ignite.{sh|bat}' script. The content of the module folder will
be added to classpath in this case.
Importing Log4J Module In Maven Project
---------------------------------------
If you are using Maven to manage dependencies of your project, you can add Log4J module
dependency like this (replace '${ignite.version}' with actual Ignite version you are
interested in):
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
...
<dependencies>
...
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-log4j</artifactId>
<version>${ignite.version}</version>
</dependency>
...
</dependencies>
...
</project>