Changed logging framework to SLF4J/Logback
This commit is contained in:
parent
8038ba2f56
commit
80c151aef8
23 changed files with 158 additions and 110 deletions
|
@ -23,8 +23,8 @@ import org.apache.commons.cli.CommandLine;
|
|||
import org.apache.commons.cli.HelpFormatter;
|
||||
import org.apache.commons.cli.ParseException;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import net.vhati.ftldat.AbstractPack;
|
||||
import net.vhati.ftldat.FolderPack;
|
||||
|
@ -44,7 +44,7 @@ import net.vhati.modmanager.core.SlipstreamConfig;
|
|||
|
||||
public class SlipstreamCLI {
|
||||
|
||||
private static final Logger log = LogManager.getLogger(SlipstreamCLI.class);
|
||||
private static final Logger log = LoggerFactory.getLogger( SlipstreamCLI.class );
|
||||
|
||||
private static File backupDir = new File( "./backup/" );
|
||||
private static File modsDir = new File( "./mods/" );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue