io.zbus.kit.logging.impl.JdkLoggerFactory Maven / Gradle / Ivy
/**
* The MIT License (MIT)
* Copyright (c) 2009-2015 HONG LEIMING
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package io.zbus.kit.logging.impl;
import java.util.logging.Level;
import io.zbus.kit.logging.Logger;
import io.zbus.kit.logging.LoggerFactory.InternalLoggerFactory;
public class JdkLoggerFactory implements InternalLoggerFactory {
public Logger getLogger(Class> clazz) {
return new JdkLogger(clazz);
}
public Logger getLogger(String name) {
return new JdkLogger(name);
}
}
class JdkLogger extends Logger {
private java.util.logging.Logger log;
private String clazzName;
JdkLogger(Class> clazz) {
log = java.util.logging.Logger.getLogger(clazz.getName());
clazzName = clazz.getName();
}
JdkLogger(String name) {
log = java.util.logging.Logger.getLogger(name);
clazzName = name;
}
public void debug(String message) {
log.logp(Level.FINE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
public void debug(String message, Throwable t) {
log.logp(Level.FINE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
public void info(String message) {
log.logp(Level.INFO, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
public void info(String message, Throwable t) {
log.logp(Level.INFO, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
public void warn(String message) {
log.logp(Level.WARNING, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
public void warn(String message, Throwable t) {
log.logp(Level.WARNING, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
public void error(String message) {
log.logp(Level.SEVERE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
public void error(String message, Throwable t) {
log.logp(Level.SEVERE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
public void fatal(String message) {
log.logp(Level.SEVERE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
public void fatal(String message, Throwable t) {
log.logp(Level.SEVERE, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
public boolean isDebugEnabled() {
return log.isLoggable(Level.FINE);
}
public boolean isInfoEnabled() {
return log.isLoggable(Level.INFO);
}
public boolean isWarnEnabled() {
return log.isLoggable(Level.WARNING);
}
public boolean isErrorEnabled() {
return log.isLoggable(Level.SEVERE);
}
public boolean isFatalEnabled() {
return log.isLoggable(Level.SEVERE);
}
@Override
public boolean isTraceEnabled() {
return log.isLoggable(Level.FINEST); //TODO
}
@Override
public void trace(String message) {
log.logp(Level.FINEST, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message);
}
@Override
public void trace(String message, Throwable t) {
log.logp(Level.FINEST, clazzName, Thread.currentThread().getStackTrace()[1].getMethodName(), message, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy