Upgraded to testificated Logging 1.0.2!

This commit is contained in:
Jeremy Wood 2012-10-18 14:46:25 -04:00
parent d7535b0551
commit 7304269866
2 changed files with 5 additions and 5 deletions

View File

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

View File

@ -800,10 +800,10 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
@Override
public void onDisable() {
this.saveMVConfigs();
Logging.close();
this.banker = null;
this.bank = null;
log(Level.INFO, "- Disabled");
Logging.shutdown();
}
/**
@ -867,7 +867,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/
@Override
public void log(Level level, String msg) {
Logging.log(level, msg, false);
Logging.logStatic(level, msg);
}
/**
@ -881,7 +881,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/
@Deprecated
public static void staticLog(Level level, String msg) {
Logging.log(level, msg, false);
Logging.logStatic(level, msg);
}
/**
@ -896,7 +896,7 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core {
*/
@Deprecated
public static void staticDebugLog(Level level, String msg) {
Logging.log(level, msg, false);
Logging.logStatic(level, msg);
}
/**