com.tsc9526.monalisa.tools.logger.JDK14LoggerFactory Maven / Gradle / Ivy
/*******************************************************************************************
* Copyright (c) 2016, zzg.zhou([email protected])
*
* Monalisa is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*******************************************************************************************/
package com.tsc9526.monalisa.tools.logger;
import java.io.InputStream;
import java.util.logging.Level;
import java.util.logging.LogManager;
/**
*
* @author zzg.zhou([email protected])
*/
public class JDK14LoggerFactory implements LoggerFactory {
static{
try{
String fname = System.getProperty("java.util.logging.config.file");
if (fname == null) {
InputStream is = LoggerFactory.class.getClass().getResourceAsStream("/logger/jdklog.properties");
if(is!=null){
LogManager lm=LogManager.getLogManager();
lm.readConfiguration(is);
is.close();
}
}
}catch(Exception e){
throw new RuntimeException(e);
}
}
public Logger getLogger(String category) {
return new JDK14Logger(java.util.logging.Logger.getLogger(category));
}
private class JDK14Logger extends Logger {
private final java.util.logging.Logger logger;
JDK14Logger(java.util.logging.Logger logger) {
this.logger = logger;
}
public void debug(String message) {
logger.log(Level.FINE, message);
}
public void debug(String message, Throwable t) {
logger.log(Level.FINE, message, t);
}
public void error(String message) {
logger.log(Level.SEVERE, message);
}
public void error(String message, Throwable t) {
logger.log(Level.SEVERE, message, t);
}
public void info(String message) {
logger.log(Level.INFO, message);
}
public void info(String message, Throwable t) {
logger.log(Level.INFO, message, t);
}
public void warn(String message) {
logger.log(Level.WARNING, message);
}
public void warn(String message, Throwable t) {
logger.log(Level.WARNING, message, t);
}
public boolean isDebugEnabled() {
return logger.isLoggable(Level.FINE);
}
public boolean isInfoEnabled() {
return logger.isLoggable(Level.INFO);
}
public boolean isWarnEnabled() {
return logger.isLoggable(Level.WARNING);
}
public boolean isErrorEnabled() {
return logger.isLoggable(Level.SEVERE);
}
public boolean isFatalEnabled() {
return logger.isLoggable(Level.SEVERE);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy