Changed unnecessary server output to 'debug' log level

This commit is contained in:
Anuken
2019-01-24 16:36:48 -05:00
parent 923d0497e6
commit 76aa409f89
3 changed files with 11 additions and 6 deletions

View File

@@ -62,6 +62,11 @@ public class ServerControl implements ApplicationListener{
Log.setLogger(new LogHandler(){
DateTimeFormatter dateTime = DateTimeFormatter.ofPattern("MM-dd-yyyy | HH:mm:ss");
@Override
public void debug(String text, Object... args){
print("&lc&fb" + "[DEBUG] " + text, args);
}
@Override
public void info(String text, Object... args){
print("&lg&fb" + "[INFO] " + text, args);