3
0
Fork 0

Bug fixes

This commit is contained in:
thomas 2021-12-21 17:06:52 +01:00
parent 539411ffec
commit c10ea55d7e
6 changed files with 16 additions and 24 deletions

View file

@ -1,5 +1,7 @@
package nl.iobyte.themepark.logger;
import nl.iobyte.themepark.ThemePark;
public class ThemeParkLogger {
/**
@ -7,7 +9,7 @@ public class ThemeParkLogger {
* @param msg Message string
*/
public static void toConsole(String msg) {
System.out.println("[ThemePark] "+msg);
ThemePark.getInstance().getLogger().info(msg);
}
}