Stop using java.util.logging.Logger, start using slf4j

This commit is contained in:
P0nk
2022-02-10 21:47:37 +01:00
parent 2bbfd46105
commit aceb410331
3 changed files with 19 additions and 18 deletions

View File

@@ -884,8 +884,7 @@ public class Server {
}
}
} catch (Exception e) {
e.printStackTrace();//For those who get errors
log.error("[SEVERE] Syntax error in 'world.ini'.");
log.error("[SEVERE] Syntax error in 'world.ini'.", e); //For those who get errors
System.exit(0);
}