Moved inner classes out to top level classes for easier testing
This commit is contained in:
parent
b4d84ce73b
commit
4f276cf52e
94
src/main/java/org/jboss/netty/logging/CommonsLogger.java
Normal file
94
src/main/java/org/jboss/netty/logging/CommonsLogger.java
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
* JBoss, Home of Professional Open Source
|
||||||
|
*
|
||||||
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
||||||
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
||||||
|
* full listing of individual contributors.
|
||||||
|
*
|
||||||
|
* This 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 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software 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 software; if not, write to the Free
|
||||||
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
||||||
|
*/
|
||||||
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class CommonsLogger implements InternalLogger {
|
||||||
|
|
||||||
|
private final Log logger;
|
||||||
|
|
||||||
|
CommonsLogger(Log logger) {
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg) {
|
||||||
|
logger.debug(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg, Throwable cause) {
|
||||||
|
logger.debug(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg) {
|
||||||
|
logger.error(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg, Throwable cause) {
|
||||||
|
logger.error(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg) {
|
||||||
|
logger.info(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg, Throwable cause) {
|
||||||
|
logger.info(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDebugEnabled() {
|
||||||
|
return logger.isDebugEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isErrorEnabled() {
|
||||||
|
return logger.isErrorEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isInfoEnabled() {
|
||||||
|
return logger.isInfoEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWarnEnabled() {
|
||||||
|
return logger.isWarnEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg) {
|
||||||
|
logger.warn(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg, Throwable cause) {
|
||||||
|
logger.warn(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return logger.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -23,6 +23,7 @@
|
|||||||
package org.jboss.netty.logging;
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logger factory which creates an
|
* Logger factory which creates an
|
||||||
* <a href="http://commons.apache.org/logging/">Apache Commons Logging</a>
|
* <a href="http://commons.apache.org/logging/">Apache Commons Logging</a>
|
||||||
@ -40,59 +41,6 @@ public class CommonsLoggerFactory extends InternalLoggerFactory {
|
|||||||
public InternalLogger newInstance(String name) {
|
public InternalLogger newInstance(String name) {
|
||||||
final org.apache.commons.logging.Log logger =
|
final org.apache.commons.logging.Log logger =
|
||||||
org.apache.commons.logging.LogFactory.getLog(name);
|
org.apache.commons.logging.LogFactory.getLog(name);
|
||||||
return new InternalLogger() {
|
return new CommonsLogger(logger);
|
||||||
public void debug(String msg) {
|
|
||||||
logger.debug(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void debug(String msg, Throwable cause) {
|
|
||||||
logger.debug(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg) {
|
|
||||||
logger.error(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg, Throwable cause) {
|
|
||||||
logger.error(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg) {
|
|
||||||
logger.info(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg, Throwable cause) {
|
|
||||||
logger.info(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isDebugEnabled() {
|
|
||||||
return logger.isDebugEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isErrorEnabled() {
|
|
||||||
return logger.isErrorEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isInfoEnabled() {
|
|
||||||
return logger.isInfoEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWarnEnabled() {
|
|
||||||
return logger.isWarnEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg) {
|
|
||||||
logger.warn(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg, Throwable cause) {
|
|
||||||
logger.warn(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return logger.toString();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
96
src/main/java/org/jboss/netty/logging/JBossLogger.java
Normal file
96
src/main/java/org/jboss/netty/logging/JBossLogger.java
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
/*
|
||||||
|
* JBoss, Home of Professional Open Source
|
||||||
|
*
|
||||||
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
||||||
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
||||||
|
* full listing of individual contributors.
|
||||||
|
*
|
||||||
|
* This 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 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software 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 software; if not, write to the Free
|
||||||
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
||||||
|
*/
|
||||||
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
import org.jboss.logging.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class JBossLogger implements InternalLogger {
|
||||||
|
|
||||||
|
private final Logger logger;
|
||||||
|
|
||||||
|
JBossLogger(Logger logger) {
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg) {
|
||||||
|
logger.debug(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg, Throwable cause) {
|
||||||
|
logger.debug(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg) {
|
||||||
|
logger.error(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg, Throwable cause) {
|
||||||
|
logger.error(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg) {
|
||||||
|
logger.info(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg, Throwable cause) {
|
||||||
|
logger.info(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
|
public boolean isDebugEnabled() {
|
||||||
|
return logger.isDebugEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isErrorEnabled() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
|
public boolean isInfoEnabled() {
|
||||||
|
return logger.isInfoEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWarnEnabled() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg) {
|
||||||
|
logger.warn(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg, Throwable cause) {
|
||||||
|
logger.warn(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.valueOf(logger.getName());
|
||||||
|
}
|
||||||
|
}
|
@ -23,6 +23,7 @@
|
|||||||
package org.jboss.netty.logging;
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logger factory which creates a
|
* Logger factory which creates a
|
||||||
* <a href="http://anonsvn.jboss.org/repos/common/common-logging-spi/">JBoss Logging</a>
|
* <a href="http://anonsvn.jboss.org/repos/common/common-logging-spi/">JBoss Logging</a>
|
||||||
@ -40,61 +41,6 @@ public class JBossLoggerFactory extends InternalLoggerFactory {
|
|||||||
public InternalLogger newInstance(String name) {
|
public InternalLogger newInstance(String name) {
|
||||||
final org.jboss.logging.Logger logger =
|
final org.jboss.logging.Logger logger =
|
||||||
org.jboss.logging.Logger.getLogger(name);
|
org.jboss.logging.Logger.getLogger(name);
|
||||||
return new InternalLogger() {
|
return new JBossLogger(logger);
|
||||||
public void debug(String msg) {
|
|
||||||
logger.debug(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void debug(String msg, Throwable cause) {
|
|
||||||
logger.debug(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg) {
|
|
||||||
logger.error(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg, Throwable cause) {
|
|
||||||
logger.error(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg) {
|
|
||||||
logger.info(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg, Throwable cause) {
|
|
||||||
logger.info(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public boolean isDebugEnabled() {
|
|
||||||
return logger.isDebugEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isErrorEnabled() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public boolean isInfoEnabled() {
|
|
||||||
return logger.isInfoEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWarnEnabled() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg) {
|
|
||||||
logger.warn(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg, Throwable cause) {
|
|
||||||
logger.warn(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return String.valueOf(logger.getName());
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
95
src/main/java/org/jboss/netty/logging/JdkLogger.java
Normal file
95
src/main/java/org/jboss/netty/logging/JdkLogger.java
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
/*
|
||||||
|
* JBoss, Home of Professional Open Source
|
||||||
|
*
|
||||||
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
||||||
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
||||||
|
* full listing of individual contributors.
|
||||||
|
*
|
||||||
|
* This 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 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software 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 software; if not, write to the Free
|
||||||
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
||||||
|
*/
|
||||||
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class JdkLogger implements InternalLogger {
|
||||||
|
|
||||||
|
private final Logger logger;
|
||||||
|
|
||||||
|
JdkLogger(Logger logger) {
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg) {
|
||||||
|
logger.log(Level.FINE, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg, Throwable cause) {
|
||||||
|
logger.log(Level.FINE, msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg) {
|
||||||
|
logger.log(Level.SEVERE, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg, Throwable cause) {
|
||||||
|
logger.log(Level.SEVERE, msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg) {
|
||||||
|
logger.log(Level.INFO, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg, Throwable cause) {
|
||||||
|
logger.log(Level.INFO, msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDebugEnabled() {
|
||||||
|
return logger.isLoggable(Level.FINE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isErrorEnabled() {
|
||||||
|
return logger.isLoggable(Level.SEVERE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isInfoEnabled() {
|
||||||
|
return logger.isLoggable(Level.INFO);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWarnEnabled() {
|
||||||
|
return logger.isLoggable(Level.WARNING);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg) {
|
||||||
|
logger.log(Level.WARNING, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg, Throwable cause) {
|
||||||
|
logger.log(Level.WARNING, msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.valueOf(logger.getName());
|
||||||
|
}
|
||||||
|
}
|
@ -22,7 +22,6 @@
|
|||||||
*/
|
*/
|
||||||
package org.jboss.netty.logging;
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
import java.util.logging.Level;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logger factory which creates a
|
* Logger factory which creates a
|
||||||
@ -41,59 +40,6 @@ public class JdkLoggerFactory extends InternalLoggerFactory {
|
|||||||
public InternalLogger newInstance(String name) {
|
public InternalLogger newInstance(String name) {
|
||||||
final java.util.logging.Logger logger =
|
final java.util.logging.Logger logger =
|
||||||
java.util.logging.Logger.getLogger(name);
|
java.util.logging.Logger.getLogger(name);
|
||||||
return new InternalLogger() {
|
return new JdkLogger(logger);
|
||||||
public void debug(String msg) {
|
|
||||||
logger.log(Level.FINE, msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void debug(String msg, Throwable cause) {
|
|
||||||
logger.log(Level.FINE, msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg) {
|
|
||||||
logger.log(Level.SEVERE, msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg, Throwable cause) {
|
|
||||||
logger.log(Level.SEVERE, msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg) {
|
|
||||||
logger.log(Level.INFO, msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg, Throwable cause) {
|
|
||||||
logger.log(Level.INFO, msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isDebugEnabled() {
|
|
||||||
return logger.isLoggable(Level.FINE);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isErrorEnabled() {
|
|
||||||
return logger.isLoggable(Level.SEVERE);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isInfoEnabled() {
|
|
||||||
return logger.isLoggable(Level.INFO);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWarnEnabled() {
|
|
||||||
return logger.isLoggable(Level.WARNING);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg) {
|
|
||||||
logger.log(Level.WARNING, msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg, Throwable cause) {
|
|
||||||
logger.log(Level.WARNING, msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return String.valueOf(logger.getName());
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
94
src/main/java/org/jboss/netty/logging/Log4JLogger.java
Normal file
94
src/main/java/org/jboss/netty/logging/Log4JLogger.java
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
* JBoss, Home of Professional Open Source
|
||||||
|
*
|
||||||
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
||||||
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
||||||
|
* full listing of individual contributors.
|
||||||
|
*
|
||||||
|
* This 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 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software 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 software; if not, write to the Free
|
||||||
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
||||||
|
*/
|
||||||
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class Log4JLogger implements InternalLogger {
|
||||||
|
|
||||||
|
private final Logger logger;
|
||||||
|
|
||||||
|
Log4JLogger(Logger logger) {
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg) {
|
||||||
|
logger.debug(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg, Throwable cause) {
|
||||||
|
logger.debug(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg) {
|
||||||
|
logger.error(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg, Throwable cause) {
|
||||||
|
logger.error(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg) {
|
||||||
|
logger.info(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg, Throwable cause) {
|
||||||
|
logger.info(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDebugEnabled() {
|
||||||
|
return logger.isDebugEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isErrorEnabled() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isInfoEnabled() {
|
||||||
|
return logger.isInfoEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWarnEnabled() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg) {
|
||||||
|
logger.warn(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg, Throwable cause) {
|
||||||
|
logger.warn(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.valueOf(logger.getName());
|
||||||
|
}
|
||||||
|
}
|
@ -23,6 +23,7 @@
|
|||||||
package org.jboss.netty.logging;
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logger factory which creates an
|
* Logger factory which creates an
|
||||||
* <a href="http://logging.apache.org/log4j/1.2/index.html">Apache Log4J</a>
|
* <a href="http://logging.apache.org/log4j/1.2/index.html">Apache Log4J</a>
|
||||||
@ -40,59 +41,6 @@ public class Log4JLoggerFactory extends InternalLoggerFactory {
|
|||||||
public InternalLogger newInstance(String name) {
|
public InternalLogger newInstance(String name) {
|
||||||
final org.apache.log4j.Logger logger =
|
final org.apache.log4j.Logger logger =
|
||||||
org.apache.log4j.Logger.getLogger(name);
|
org.apache.log4j.Logger.getLogger(name);
|
||||||
return new InternalLogger() {
|
return new Log4JLogger(logger);
|
||||||
public void debug(String msg) {
|
|
||||||
logger.debug(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void debug(String msg, Throwable cause) {
|
|
||||||
logger.debug(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg) {
|
|
||||||
logger.error(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg, Throwable cause) {
|
|
||||||
logger.error(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg) {
|
|
||||||
logger.info(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg, Throwable cause) {
|
|
||||||
logger.info(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isDebugEnabled() {
|
|
||||||
return logger.isDebugEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isErrorEnabled() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isInfoEnabled() {
|
|
||||||
return logger.isInfoEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWarnEnabled() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg) {
|
|
||||||
logger.warn(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg, Throwable cause) {
|
|
||||||
logger.warn(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return String.valueOf(logger.getName());
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
94
src/main/java/org/jboss/netty/logging/Slf4JLogger.java
Normal file
94
src/main/java/org/jboss/netty/logging/Slf4JLogger.java
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
* JBoss, Home of Professional Open Source
|
||||||
|
*
|
||||||
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
||||||
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
||||||
|
* full listing of individual contributors.
|
||||||
|
*
|
||||||
|
* This 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 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software 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 software; if not, write to the Free
|
||||||
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
||||||
|
*/
|
||||||
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class Slf4JLogger implements InternalLogger {
|
||||||
|
|
||||||
|
private final Logger logger;
|
||||||
|
|
||||||
|
Slf4JLogger(Logger logger) {
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg) {
|
||||||
|
logger.debug(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void debug(String msg, Throwable cause) {
|
||||||
|
logger.debug(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg) {
|
||||||
|
logger.error(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void error(String msg, Throwable cause) {
|
||||||
|
logger.error(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg) {
|
||||||
|
logger.info(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void info(String msg, Throwable cause) {
|
||||||
|
logger.info(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDebugEnabled() {
|
||||||
|
return logger.isDebugEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isErrorEnabled() {
|
||||||
|
return logger.isErrorEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isInfoEnabled() {
|
||||||
|
return logger.isInfoEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWarnEnabled() {
|
||||||
|
return logger.isWarnEnabled();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg) {
|
||||||
|
logger.warn(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void warn(String msg, Throwable cause) {
|
||||||
|
logger.warn(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.valueOf(logger.getName());
|
||||||
|
}
|
||||||
|
}
|
@ -23,6 +23,7 @@
|
|||||||
package org.jboss.netty.logging;
|
package org.jboss.netty.logging;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logger factory which creates a <a href="http://www.slf4j.org/">SLF4J</a>
|
* Logger factory which creates a <a href="http://www.slf4j.org/">SLF4J</a>
|
||||||
* logger.
|
* logger.
|
||||||
@ -39,59 +40,6 @@ public class Slf4JLoggerFactory extends InternalLoggerFactory {
|
|||||||
public InternalLogger newInstance(String name) {
|
public InternalLogger newInstance(String name) {
|
||||||
final org.slf4j.Logger logger =
|
final org.slf4j.Logger logger =
|
||||||
org.slf4j.LoggerFactory.getLogger(name);
|
org.slf4j.LoggerFactory.getLogger(name);
|
||||||
return new InternalLogger() {
|
return new Slf4JLogger(logger);
|
||||||
public void debug(String msg) {
|
|
||||||
logger.debug(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void debug(String msg, Throwable cause) {
|
|
||||||
logger.debug(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg) {
|
|
||||||
logger.error(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void error(String msg, Throwable cause) {
|
|
||||||
logger.error(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg) {
|
|
||||||
logger.info(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void info(String msg, Throwable cause) {
|
|
||||||
logger.info(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isDebugEnabled() {
|
|
||||||
return logger.isDebugEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isErrorEnabled() {
|
|
||||||
return logger.isErrorEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isInfoEnabled() {
|
|
||||||
return logger.isInfoEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWarnEnabled() {
|
|
||||||
return logger.isWarnEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg) {
|
|
||||||
logger.warn(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void warn(String msg, Throwable cause) {
|
|
||||||
logger.warn(msg, cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return String.valueOf(logger.getName());
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user