org.nlpcn.commons.lang.util.logging.Jdk14LoggingImpl Maven / Gradle / Ivy
/*
* Copyright 1999-2101 Alibaba Group Holding Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.nlpcn.commons.lang.util.logging;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Jdk14LoggingImpl implements Log {
private Logger log;
private String loggerName;
public Jdk14LoggingImpl(String loggerName){
this.loggerName = loggerName;
log = Logger.getLogger(loggerName);
}
public boolean isDebugEnabled() {
return log.isLoggable(Level.FINE);
}
public void error(String s, Throwable e) {
log.logp(Level.SEVERE, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s, e);
}
public void error(String s) {
log.logp(Level.SEVERE, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s);
}
public void debug(String s) {
log.logp(Level.FINE, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s);
}
public void debug(String s, Throwable e) {
log.logp(Level.FINE, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s, e);
}
public void warn(String s) {
log.logp(Level.WARNING, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s);
}
@Override
public void warn(String s, Throwable e) {
log.logp(Level.WARNING, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), s, e);
}
@Override
public boolean isInfoEnabled() {
return log.isLoggable(Level.INFO);
}
@Override
public void info(String msg) {
log.logp(Level.INFO, loggerName, Thread.currentThread().getStackTrace()[1].getMethodName(), msg);
}
@Override
public boolean isWarnEnabled() {
return log.isLoggable(Level.WARNING);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy