Uses of Enum
io.netty.util.internal.logging.InternalLogLevel
Packages that use InternalLogLevel
Package
Description
Logs the I/O events for debugging purpose.
Internal-use-only logging API which is not allowed to be used outside Netty.
-
Uses of InternalLogLevel in io.netty.handler.logging
Fields in io.netty.handler.logging declared as InternalLogLevelMethods in io.netty.handler.logging that return InternalLogLevel -
Uses of InternalLogLevel in io.netty.util.internal.logging
Subclasses with type arguments of type InternalLogLevel in io.netty.util.internal.loggingMethods in io.netty.util.internal.logging that return InternalLogLevelModifier and TypeMethodDescriptionstatic InternalLogLevelReturns 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 io.netty.util.internal.logging with parameters of type InternalLogLevelModifier and TypeMethodDescriptionbooleanAbstractInternalLogger.isEnabled(InternalLogLevel level) booleanInternalLogger.isEnabled(InternalLogLevel level) Is the logger instance enabled for the specifiedlevel?voidAbstractInternalLogger.log(InternalLogLevel level, String msg) voidAbstractInternalLogger.log(InternalLogLevel level, String format, Object arg) voidAbstractInternalLogger.log(InternalLogLevel level, String format, Object... arguments) voidAbstractInternalLogger.log(InternalLogLevel level, String format, Object argA, Object argB) voidAbstractInternalLogger.log(InternalLogLevel level, String msg, Throwable cause) voidAbstractInternalLogger.log(InternalLogLevel level, Throwable cause) voidInternalLogger.log(InternalLogLevel level, String msg) Log a message at the specifiedlevel.voidInternalLogger.log(InternalLogLevel level, String format, Object arg) Log a message at the specifiedlevelaccording to the specified format and argument.voidInternalLogger.log(InternalLogLevel level, String format, Object... arguments) Log a message at the specifiedlevelaccording to the specified format and arguments.voidInternalLogger.log(InternalLogLevel level, String format, Object argA, Object argB) Log a message at the specifiedlevelaccording to the specified format and arguments.voidInternalLogger.log(InternalLogLevel level, String msg, Throwable t) Log an exception (throwable) at the specifiedlevelwith an accompanying message.voidInternalLogger.log(InternalLogLevel level, Throwable t) Log an exception (throwable) at the specifiedlevel.