quietinitializer.java

来自「aglet的部分源码」· Java 代码 · 共 23 行

JAVA
23
字号
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 + =
减小字号Ctrl + -
显示快捷键?