Uses of Enum
org.jboss.netty.logging.InternalLogLevel
Packages that use InternalLogLevel
Package
Description
Logs a
ChannelEvent
for debugging purpose
using an InternalLogger
.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 InternalLogLevelModifier and TypeFieldDescriptionprivate static final InternalLogLevel
LoggingHandler.DEFAULT_LEVEL
private final InternalLogLevel
LoggingHandler.level
Methods in org.jboss.netty.handler.logging that return InternalLogLevelModifier and TypeMethodDescriptionLoggingHandler.getLevel()
Returns theInternalLogLevel
that this handler uses to log aChannelEvent
.Constructors in org.jboss.netty.handler.logging with parameters of type InternalLogLevelModifierConstructorDescriptionLoggingHandler
(Class<?> clazz, InternalLogLevel level) Creates a new instance with the specified logger name.LoggingHandler
(Class<?> clazz, InternalLogLevel level, boolean hexDump) Creates a new instance with the specified logger name.LoggingHandler
(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 InternalLogLevelModifier and TypeMethodDescriptionstatic InternalLogLevel
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 InternalLogLevelModifier and TypeMethodDescriptionboolean
AbstractInternalLogger.isEnabled
(InternalLogLevel level) boolean
InternalLogger.isEnabled
(InternalLogLevel level) Returnstrue
if the specified log level message is logged.void
AbstractInternalLogger.log
(InternalLogLevel level, String msg) void
AbstractInternalLogger.log
(InternalLogLevel level, String msg, Throwable cause) void
InternalLogger.log
(InternalLogLevel level, String msg) Logs a message.void
InternalLogger.log
(InternalLogLevel level, String msg, Throwable cause) Logs a message.