Now using Logging 1.0.3!

This commit is contained in:
Jeremy Wood 2012-10-18 15:17:52 -04:00
parent 7304269866
commit 3572d3fbe7
2 changed files with 4 additions and 4 deletions

View File

@ -283,7 +283,7 @@
<dependency> <dependency>
<groupId>com.dumptruckman.minecraft</groupId> <groupId>com.dumptruckman.minecraft</groupId>
<artifactId>Logging</artifactId> <artifactId>Logging</artifactId>
<version>1.0.2</version> <version>1.0.3</version>
<type>jar</type> <type>jar</type>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>

View File

@ -867,7 +867,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/ */
@Override @Override
public void log(Level level, String msg) { public void log(Level level, String msg) {
Logging.logStatic(level, msg); Logging.log(level, msg);
} }
/** /**
@ -881,7 +881,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/ */
@Deprecated @Deprecated
public static void staticLog(Level level, String msg) { public static void staticLog(Level level, String msg) {
Logging.logStatic(level, msg); Logging.log(level, msg);
} }
/** /**
@ -896,7 +896,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/ */
@Deprecated @Deprecated
public static void staticDebugLog(Level level, String msg) { public static void staticDebugLog(Level level, String msg) {
Logging.logStatic(level, msg); Logging.log(level, msg);
} }
/** /**