updated to log4j2

This commit is contained in:
jomu
2015-07-10 08:37:04 +00:00
parent 1a8c60b6db
commit f6c9dde7d9
2 changed files with 8 additions and 7 deletions

View File

@ -25,12 +25,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>compile</scope>
</dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -2,7 +2,9 @@ package de.muehlencord.shared.configuration;
import java.util.LinkedList;
import java.util.List;
import org.apache.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
*
@ -11,7 +13,7 @@ import org.apache.log4j.Logger;
*/
public abstract class Parameter<T> {
private final static Logger LOGGER = Logger.getLogger(Parameter.class);
private final static Logger LOGGER = LogManager.getLogger(Parameter.class);
/** the name of the parameter */
private String name;