org.eclipse.jetty.util.log
类 LoggerLog

java.lang.Object
  继承者 org.eclipse.jetty.util.log.AbstractLogger
      继承者 org.eclipse.jetty.util.log.LoggerLog
所有已实现的接口:
Logger

public class LoggerLog
extends AbstractLogger


构造方法摘要
LoggerLog(Object logger)
           
 
方法摘要
 void debug(String msg, Object... args)
          Formats and logs at debug level.
 void debug(String msg, Throwable th)
          Logs the given message at debug level, with Throwable information.
 void debug(Throwable thrown)
          Logs the given Throwable information at debug level
 String getName()
           
 void ignore(Throwable ignored)
          Ignore an exception.
 void info(String msg, Object... args)
          Formats and logs at info level.
 void info(String msg, Throwable thrown)
          Logs the given message at info level, with Throwable information.
 void info(Throwable thrown)
          Logs the given Throwable information at info level
 boolean isDebugEnabled()
           
protected  Logger newLogger(String fullname)
          Create a Child Logger of this Logger.
 void setDebugEnabled(boolean enabled)
          Mutator used to turn debug on programmatically.
 void warn(String msg, Object... args)
          Formats and logs at warn level.
 void warn(String msg, Throwable thrown)
          Logs the given message at warn level, with Throwable information.
 void warn(Throwable thrown)
          Logs the given Throwable information at warn level
 
从类 org.eclipse.jetty.util.log.AbstractLogger 继承的方法
getLogger
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

LoggerLog

public LoggerLog(Object logger)
方法详细信息

getName

public String getName()
返回:
the name of this logger

warn

public void warn(String msg,
                 Object... args)
从接口 Logger 复制的描述
Formats and logs at warn level.

参数:
msg - the formatting string
args - the optional arguments

warn

public void warn(Throwable thrown)
从接口 Logger 复制的描述
Logs the given Throwable information at warn level

参数:
thrown - the Throwable to log

warn

public void warn(String msg,
                 Throwable thrown)
从接口 Logger 复制的描述
Logs the given message at warn level, with Throwable information.

参数:
msg - the message to log
thrown - the Throwable to log

info

public void info(String msg,
                 Object... args)
从接口 Logger 复制的描述
Formats and logs at info level.

参数:
msg - the formatting string
args - the optional arguments

info

public void info(Throwable thrown)
从接口 Logger 复制的描述
Logs the given Throwable information at info level

参数:
thrown - the Throwable to log

info

public void info(String msg,
                 Throwable thrown)
从接口 Logger 复制的描述
Logs the given message at info level, with Throwable information.

参数:
msg - the message to log
thrown - the Throwable to log

isDebugEnabled

public boolean isDebugEnabled()
返回:
whether the debug level is enabled

setDebugEnabled

public void setDebugEnabled(boolean enabled)
从接口 Logger 复制的描述
Mutator used to turn debug on programmatically.

参数:
enabled - whether to enable the debug level

debug

public void debug(String msg,
                  Object... args)
从接口 Logger 复制的描述
Formats and logs at debug level.

参数:
msg - the formatting string
args - the optional arguments

debug

public void debug(Throwable thrown)
从接口 Logger 复制的描述
Logs the given Throwable information at debug level

参数:
thrown - the Throwable to log

debug

public void debug(String msg,
                  Throwable th)
从接口 Logger 复制的描述
Logs the given message at debug level, with Throwable information.

参数:
msg - the message to log
th - the Throwable to log

ignore

public void ignore(Throwable ignored)
从接口 Logger 复制的描述
Ignore an exception.

This should be used rather than an empty catch block.


newLogger

protected Logger newLogger(String fullname)
Create a Child Logger of this Logger.

指定者:
AbstractLogger 中的 newLogger


Copyright © 2013. All Rights Reserved.