
com.star.log.dialect.jdk.JdkLogFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.log.dialect.jdk;
import com.star.io.IoUtil;
import com.star.io.resource.ResourceUtil;
import com.star.lang.Console;
import com.star.log.Log;
import com.star.log.LogFactory;
import java.io.InputStream;
import java.util.logging.LogManager;
/**
* JDK日志工厂类
* java.util.logging log.
*
* @author Looly
*/
public class JdkLogFactory extends LogFactory {
public JdkLogFactory() {
super("JDK Logging");
readConfig();
}
@Override
public Log createLog(String name) {
return new JdkLog(name);
}
@Override
public Log createLog(Class> clazz) {
return new JdkLog(clazz);
}
/**
* 读取ClassPath下的logging.properties配置文件
*/
private void readConfig() {
//避免循环引用,Log初始化的时候不使用相关工具类
InputStream in = ResourceUtil.getStreamSafe("logging.properties");
if (null == in) {
System.err.println("[WARN] Can not find [logging.properties], use [%JRE_HOME%/lib/logging.properties] as default!");
return;
}
try {
LogManager.getLogManager().readConfiguration(in);
} catch (Exception e) {
Console.error(e, "Read [logging.properties] from classpath error!");
try {
LogManager.getLogManager().readConfiguration();
} catch (Exception e1) {
Console.error(e, "Read [logging.properties] from [%JRE_HOME%/lib/logging.properties] error!");
}
} finally {
IoUtil.close(in);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy