1
This commit is contained in:
parent
0db35edb8f
commit
fccf7b88a1
|
|
@ -16,6 +16,15 @@ loom {
|
||||||
forge {
|
forge {
|
||||||
mixinConfig 'extendedae_plus.mixins.json'
|
mixinConfig 'extendedae_plus.mixins.json'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
runs {
|
||||||
|
client1 {
|
||||||
|
client()
|
||||||
|
name "Client 1"
|
||||||
|
runDir "run/client1"
|
||||||
|
programArgs "--username", "Player1"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|
|
||||||
18
src/main/java/com/extendedae_plus/util/ExtendedAELogger.java
Normal file
18
src/main/java/com/extendedae_plus/util/ExtendedAELogger.java
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
package com.extendedae_plus.util;
|
||||||
|
|
||||||
|
import com.extendedae_plus.ExtendedAEPlus;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统一日志工具类。
|
||||||
|
* 在需要的类中可使用:
|
||||||
|
* import static com.extendedae_plus.util.ExtendedAELogger.LOGGER;
|
||||||
|
*/
|
||||||
|
public final class ExtendedAELogger {
|
||||||
|
public static final Logger LOGGER = LoggerFactory.getLogger(ExtendedAEPlus.MODID);
|
||||||
|
|
||||||
|
private ExtendedAELogger() {
|
||||||
|
// no instance
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user