Replace log4j with slf4j
This commit is contained in:
@@ -8,14 +8,14 @@ import de.jeyp91.App;
|
||||
import de.jeyp91.BaseMatch;
|
||||
import de.jeyp91.teamidmatcher.TeamIDMatcher;
|
||||
import de.jeyp91.apifootball.APIFootballMatch;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public class TLWMatch extends BaseMatch{
|
||||
private static final Logger logger = LogManager.getLogger(TLWMatch.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(TLWMatch.class);
|
||||
|
||||
private Integer season = null;
|
||||
private Integer league = null;
|
||||
|
||||
Reference in New Issue
Block a user