Uses of Class
io.netty.util.internal.logging.InternalLogLevel
-
Packages that use InternalLogLevel Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.logging Logs the I/O events for debugging purpose.io.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well.io.netty.util.internal.logging Internal-use-only logging API which is not allowed to be used outside Netty. -
-
Uses of InternalLogLevel in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as InternalLogLevel Modifier and Type Field Description private InternalLogLevel
Http2FrameLogger. level
Methods in io.netty.handler.codec.http2 that return InternalLogLevel Modifier and Type Method Description private static InternalLogLevel
Http2FrameLogger. checkAndConvertLevel(LogLevel level)
Constructors in io.netty.handler.codec.http2 with parameters of type InternalLogLevel Constructor Description Http2FrameLogger(InternalLogLevel level, InternalLogger logger)
-
Uses of InternalLogLevel in io.netty.handler.logging
Fields in io.netty.handler.logging declared as InternalLogLevel Modifier and Type Field Description protected InternalLogLevel
LoggingHandler. internalLevel
private InternalLogLevel
LogLevel. internalLevel
Methods in io.netty.handler.logging that return InternalLogLevel Modifier and Type Method Description InternalLogLevel
LogLevel. toInternalLevel()
For internal use only.Constructors in io.netty.handler.logging with parameters of type InternalLogLevel Constructor Description LogLevel(InternalLogLevel internalLevel)
-
Uses of InternalLogLevel in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as InternalLogLevel Modifier and Type Field Description private InternalLogLevel
LoggingDnsQueryLifecycleObserver. level
private InternalLogLevel
LoggingDnsQueryLifeCycleObserverFactory. level
Methods in io.netty.resolver.dns that return InternalLogLevel Modifier and Type Method Description private static InternalLogLevel
LoggingDnsQueryLifeCycleObserverFactory. checkAndConvertLevel(LogLevel level)
Constructors in io.netty.resolver.dns with parameters of type InternalLogLevel Constructor Description LoggingDnsQueryLifecycleObserver(DnsQuestion question, InternalLogger logger, InternalLogLevel level)
-
Uses of InternalLogLevel in io.netty.util.internal.logging
Methods in io.netty.util.internal.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 io.netty.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
?boolean
Log4J2Logger. isEnabled(InternalLogLevel level)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String msg)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object arg)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object... arguments)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object argA, java.lang.Object argB)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.String msg, java.lang.Throwable cause)
void
AbstractInternalLogger. log(InternalLogLevel level, java.lang.Throwable cause)
void
InternalLogger. log(InternalLogLevel level, java.lang.String msg)
Log a message at the specifiedlevel
.void
InternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object arg)
Log a message at the specifiedlevel
according to the specified format and argument.void
InternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object... arguments)
Log a message at the specifiedlevel
according to the specified format and arguments.void
InternalLogger. log(InternalLogLevel level, java.lang.String format, java.lang.Object argA, java.lang.Object argB)
Log a message at the specifiedlevel
according to the specified format and arguments.void
InternalLogger. log(InternalLogLevel level, java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the specifiedlevel
with an accompanying message.void
InternalLogger. log(InternalLogLevel level, java.lang.Throwable t)
Log an exception (throwable) at the specifiedlevel
.void
Log4J2Logger. log(InternalLogLevel level, java.lang.String msg)
void
Log4J2Logger. log(InternalLogLevel level, java.lang.String format, java.lang.Object arg)
void
Log4J2Logger. log(InternalLogLevel level, java.lang.String format, java.lang.Object... arguments)
void
Log4J2Logger. log(InternalLogLevel level, java.lang.String format, java.lang.Object argA, java.lang.Object argB)
void
Log4J2Logger. log(InternalLogLevel level, java.lang.String msg, java.lang.Throwable t)
void
Log4J2Logger. log(InternalLogLevel level, java.lang.Throwable t)
private static org.apache.logging.log4j.Level
Log4J2Logger. toLevel(InternalLogLevel level)
-