Bug fixes
This commit is contained in:
parent
539411ffec
commit
c10ea55d7e
6 changed files with 16 additions and 24 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue