Uses of Class
io.netty5.util.internal.logging.InternalLogLevel
-
Packages that use InternalLogLevel Package Description io.netty5.handler.logging Logs the I/O events for debugging purpose.io.netty5.util.internal.logging Internal-use-only logging API which is not allowed to be used outside Netty. -
-
Uses of InternalLogLevel in io.netty5.handler.logging
Fields in io.netty5.handler.logging declared as InternalLogLevel Modifier and Type Field Description protected InternalLogLevel
LoggingHandler. internalLevel
Methods in io.netty5.handler.logging that return InternalLogLevel Modifier and Type Method Description InternalLogLevel
LogLevel. toInternalLevel()
For internal use only. -
Uses of InternalLogLevel in io.netty5.util.internal.logging
Methods in io.netty5.util.internal.logging that return InternalLogLevel Modifier and Type Method Description static InternalLogLevel
InternalLogLevel. valueOf(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 io.netty5.util.internal.logging with parameters of type InternalLogLevel Modifier and Type Method Description boolean
AbstractInternalLogger. isEnabled(InternalLogLevel level)
boolean
InternalLogger. isEnabled(InternalLogLevel level)
Is the logger instance enabled for the specifiedlevel
?void
AbstractInternalLogger. log(InternalLogLevel level, String msg)
void
AbstractInternalLogger. log(InternalLogLevel level, String format, Object arg)
void
AbstractInternalLogger. log(InternalLogLevel level, String format, Object... arguments)
void
AbstractInternalLogger. log(InternalLogLevel level, String format, Object argA, Object argB)
void
AbstractInternalLogger. log(InternalLogLevel level, String msg, Throwable cause)
void
AbstractInternalLogger. log(InternalLogLevel level, Throwable cause)
void
InternalLogger. log(InternalLogLevel level, String msg)
Log a message at the specifiedlevel
.void
InternalLogger. log(InternalLogLevel level, String format, Object arg)
Log a message at the specifiedlevel
according to the specified format and argument.void
InternalLogger. log(InternalLogLevel level, String format, Object... arguments)
Log a message at the specifiedlevel
according to the specified format and arguments.void
InternalLogger. log(InternalLogLevel level, String format, Object argA, Object argB)
Log a message at the specifiedlevel
according to the specified format and arguments.void
InternalLogger. log(InternalLogLevel level, String msg, Throwable t)
Log an exception (throwable) at the specifiedlevel
with an accompanying message.void
InternalLogger. log(InternalLogLevel level, Throwable t)
Log an exception (throwable) at the specifiedlevel
.
-