Replace log4j with slf4j

This commit is contained in:
2025-01-26 23:01:35 +01:00
parent a3882ab42b
commit 258ff19064
18 changed files with 54 additions and 66 deletions

View File

@@ -2,8 +2,8 @@ package de.jeyp91.tippliga;
import de.jeyp91.ResourceProvider;
import de.jeyp91.tippligaforum.TippligaConfigProvider;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
@@ -11,7 +11,7 @@ import java.util.ArrayList;
public class TLWMatchesCreatorTipperPokal extends TLWMatchesCreatorBase{
Logger logger = LogManager.getLogger(TLWMatchesCreatorTipperPokal.class);
Logger logger = LoggerFactory.getLogger(TLWMatchesCreatorTipperPokal.class);
int season;
int league;