mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2025-01-10 10:17:41 +01:00
Now using Logging 1.0.3!
This commit is contained in:
parent
7304269866
commit
3572d3fbe7
2
pom.xml
2
pom.xml
@ -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>
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user