二、为ME扩展样板终端命中槽位加入18x18 边框+彩虹流转高亮槽位叠加 三、装配矩阵添加锻造台/切石机配方上传功能 四、对GuiExPatternTerminalMixin进行软依赖处理 五、添加工具类 六、对ae2和extendedae样板管理终端添加显示样板制作数量功能
13 lines
395 B
Java
13 lines
395 B
Java
package com.extendedae_plus.util;
|
|
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
/**
|
|
* Global logger utility for ExtendedAE Plus mod
|
|
*/
|
|
public class ExtendedAELogger {
|
|
public static final Logger LOGGER = LoggerFactory.getLogger("ExtendedAEPlus");
|
|
|
|
private ExtendedAELogger() {throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");}
|
|
} |