Uses of Class
org.jboss.netty.logging.InternalLogLevel
-
Packages that use InternalLogLevel Package Description org.jboss.netty.handler.logging Logs aChannelEvent
for debugging purpose using anInternalLogger
.org.jboss.netty.logging Simplistic internal-use-only logging layer which allows a user to decide what logging framework Netty should use. -
-
Uses of InternalLogLevel in org.jboss.netty.handler.logging
Fields in org.jboss.netty.handler.logging declared as InternalLogLevel Modifier and Type Field Description private static InternalLogLevel
LoggingHandler. DEFAULT_LEVEL
private InternalLogLevel
LoggingHandler. level
Methods in org.jboss.netty.handler.logging that return InternalLogLevel Modifier and Type Method Description InternalLogLevel
LoggingHandler. getLevel()
Returns theInternalLogLevel
that this handler uses to log aChannelEvent
.Constructors in org.jboss.netty.handler.logging with parameters of type InternalLogLevel Constructor Description LoggingHandler(java.lang.Class<?> clazz, InternalLogLevel level)
Creates a new instance with the specified logger name.LoggingHandler(java.lang.Class<?> clazz, InternalLogLevel level, boolean hexDump)
Creates a new instance with the specified logger name.LoggingHandler(java.lang.String name, InternalLogLevel level, boolean hexDump)
Creates a new instance with the specified logger name.LoggingHandler(InternalLogLevel level)
Creates a new instance whose logger name is the fully qualified class name of the instance.LoggingHandler(InternalLogLevel level, boolean hexDump)
Creates a new instance whose logger name is the fully qualified class name of the instance. -
Uses of InternalLogLevel in org.jboss.netty.logging
Methods in org.jboss.netty.logging that return InternalLogLevel Modifier and Type Method Description static InternalLogLevel
InternalLogLevel. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InternalLogLevel[]
InternalLogLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.logging with parameters of type InternalLogLevel Modifier and Type Method Description boolean
AbstractInternalLogger. isEnabled(InternalLogLevel level)
boolean
InternalLogger. isEnabled(InternalLogLevel level)
Returnstrue
if the specified log level message is logged.void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String msg)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String msg, java.lang.Throwable cause)
void
InternalLogger. log(InternalLogLevel level, java.lang.String msg)
Logs a message.void
InternalLogger. log(InternalLogLevel level, java.lang.String msg, java.lang.Throwable cause)
Logs a message.
-