⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log4jinitializer.java

📁 aglet的部分源码
💻 JAVA
字号:
package org.aglets.log.log4j;import org.aglets.log.LogInitializer;import org.aglets.log.LogCategory;import java.util.Properties;import org.apache.log4j.xml.DOMConfigurator;/** * Initializes the Log4J logging system.  Logging * system will be initialized staticly using the DOMConfigurater. * The configuration file agletslog.xml must be in "aglets.home". */public class Log4jInitializer extends LogInitializer {         static {        // Set the inherited static member to an instance         // of this subclass.  Thus, this getCategoryImpl        // will be invoked.        m_instance = new Log4jInitializer();                // Get system properties		Properties system_props = System.getProperties();		String FS = system_props.getProperty("file.separator");		String PS = system_props.getProperty("path.separator");		                // Setup XML configuration of log4J        String logConfig = system_props.getProperty("aglets.home");        if( !logConfig.endsWith(FS) ) {            logConfig = logConfig + FS;        }                DOMConfigurator.configure(logConfig+"cnf"+FS+"agletslog.xml");    }        /**      * Return the Log4j Implmentation  of  the logging      * interface.     * @param  name The name of the category.     */    protected LogCategory getCategoryImpl(String name) {        return new Log4jCategory(name);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -