Hi Here is a SLF4J Logger to use with org.apache.commons.transaction 1.2.
I think it's too late to include it in the last version (because there is no Logger in the last version), but if someone need it. It's here. Cheers Romain
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. */ import org.apache.commons.transaction.util.LoggerFacade; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Default logger implementation. Uses Slf4J logging. * * @version $Id: Slf4JLogger.java 493628 2010-12-16 11:27 filirom1 $ */ public class Slf4JLogger implements LoggerFacade { protected Logger logger; public Slf4JLogger(Logger logger) { this.logger = logger; } public Logger getLogger() { return logger; } public LoggerFacade createLogger(String name) { return new Slf4JLogger(LoggerFactory.getLogger(name)); } public void logInfo(String message) { logger.info(message); } public void logFine(String message) { logger.debug(message); } public boolean isFineEnabled() { return logger.isDebugEnabled(); } public void logFiner(String message) { logger.debug(message); } public boolean isFinerEnabled() { return logger.isDebugEnabled(); } public void logFinest(String message) { logger.debug(message); } public boolean isFinestEnabled() { return logger.isDebugEnabled(); } public void logWarning(String message) { logger.warn(message); } public void logWarning(String message, Throwable t) { logger.warn(message, t); } public void logSevere(String message) { logger.error(message); } public void logSevere(String message, Throwable t) { logger.error(message, t); } }
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
