📄 quietinitializer.java
字号:
package org.aglets.log.quiet;import org.aglets.log.LogInitializer;import org.aglets.log.LogCategory;/** * Initializes the logging system to simply print to the console. */public class QuietInitializer extends LogInitializer { static { m_instance = new QuietInitializer(); } /** * Return the Log4j Implmentation of the logging * interface. * @param name The name of the category. */ protected LogCategory getCategoryImpl(String name) { return new QuietCategory(name); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -