updated to log4j2
This commit is contained in:
@ -27,9 +27,8 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>log4j</artifactId>
|
<artifactId>log4j-core</artifactId>
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@ -2,7 +2,9 @@ package de.muehlencord.shared.configuration;
|
|||||||
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
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> {
|
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 */
|
/** the name of the parameter */
|
||||||
private String name;
|
private String name;
|
||||||
|
|||||||
Reference in New Issue
Block a user