org.jboss.logging.JBossLogManagerLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
/*
* JBoss, Home of Professional Open Source.
*
* Copyright 2010 Red Hat, Inc.
*
* 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.jboss.logging;
import org.jboss.logmanager.ExtLogRecord;
final class JBossLogManagerLogger extends Logger {
private static final long serialVersionUID = 7429618317727584742L;
private final org.jboss.logmanager.Logger logger;
JBossLogManagerLogger(final String name, final org.jboss.logmanager.Logger logger) {
super(name);
this.logger = logger;
}
public boolean isEnabled(final Level level) {
return logger.isLoggable(translate(level));
}
protected void doLog(final Level level, final String loggerClassName, final Object message, final Object[] parameters, final Throwable thrown) {
java.util.logging.Level translatedLevel = translate(level);
if (logger.isLoggable(translatedLevel)) {
if (parameters == null) {
logger.log(loggerClassName, translatedLevel, String.valueOf(message), thrown);
} else {
logger.log(loggerClassName, translatedLevel, String.valueOf(message), ExtLogRecord.FormatStyle.MESSAGE_FORMAT, parameters, thrown);
}
}
}
protected void doLogf(final Level level, final String loggerClassName, final String format, final Object[] parameters, final Throwable thrown) {
if (parameters == null) {
logger.log(loggerClassName, translate(level), format, thrown);
} else {
logger.log(loggerClassName, translate(level), format, ExtLogRecord.FormatStyle.PRINTF, parameters, thrown);
}
}
private static java.util.logging.Level translate(final Level level) {
if (level != null) switch (level) {
case FATAL: return org.jboss.logmanager.Level.FATAL;
case ERROR: return org.jboss.logmanager.Level.ERROR;
case WARN: return org.jboss.logmanager.Level.WARN;
case INFO: return org.jboss.logmanager.Level.INFO;
case DEBUG: return org.jboss.logmanager.Level.DEBUG;
case TRACE: return org.jboss.logmanager.Level.TRACE;
}
return org.jboss.logmanager.Level.ALL;
}
}