| 程序包 | 说明 |
|---|---|
| org.jupiter.common.util.internal.logging |
Internal-use-only logging API which is not allowed to be used outside Jupiter.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static InternalLogLevel |
InternalLogLevel.valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static InternalLogLevel[] |
InternalLogLevel.values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
InternalLogger.isEnabled(InternalLogLevel level)
Is the logger instance enabled for the specified
level? |
boolean |
AbstractInternalLogger.isEnabled(InternalLogLevel level) |
void |
InternalLogger.log(InternalLogLevel level,
String msg)
Log a message at the specified
level. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
String msg) |
void |
InternalLogger.log(InternalLogLevel level,
String format,
Object... arguments)
Log a message at the specified
level according to the specified format
and arguments. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
String format,
Object... arguments) |
void |
InternalLogger.log(InternalLogLevel level,
String format,
Object arg)
Log a message at the specified
level according to the specified format
and argument. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
String format,
Object arg) |
void |
InternalLogger.log(InternalLogLevel level,
String format,
Object argA,
Object argB)
Log a message at the specified
level according to the specified format
and arguments. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
String format,
Object argA,
Object argB) |
void |
InternalLogger.log(InternalLogLevel level,
String msg,
Throwable t)
Log an exception (throwable) at the specified
level with an
accompanying message. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
String msg,
Throwable cause) |
void |
InternalLogger.log(InternalLogLevel level,
Throwable t)
Log an exception (throwable) at the specified
level. |
void |
AbstractInternalLogger.log(InternalLogLevel level,
Throwable cause) |
Copyright © 2018. All rights reserved.