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

@@ -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;