public enum MigratoryDataLogLevel extends Enum<MigratoryDataLogLevel>
INFO logging level.| Enum Constant and Description |
|---|
DEBUG
The
DEBUG level turns on the debug, info, warning, and error logs of the API. |
ERROR
The
ERROR level turns on the error logs of the API. |
INFO
The
INFO level turns on the info, warning, and error logs of the API. |
TRACE
The
TRACE level turns on all the logs of the API. |
WARN
The
WARN level turns on the warning and error logs of the API. |
| Modifier and Type | Method and Description |
|---|---|
static MigratoryDataLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MigratoryDataLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigratoryDataLogLevel ERROR
ERROR level turns on the error logs of the API.public static final MigratoryDataLogLevel WARN
WARN level turns on the warning and error logs of the API.public static final MigratoryDataLogLevel INFO
INFO level turns on the info, warning, and error logs of the API.public static final MigratoryDataLogLevel DEBUG
DEBUG level turns on the debug, info, warning, and error logs of the API.public static final MigratoryDataLogLevel TRACE
TRACE level turns on all the logs of the API.public static MigratoryDataLogLevel[] values()
for (MigratoryDataLogLevel c : MigratoryDataLogLevel.values()) System.out.println(c);
public static MigratoryDataLogLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.