public static enum Analytics.LogLevel extends java.lang.Enum<Analytics.LogLevel>
Enum Constant and Description |
---|
BASIC
Deprecated.
Use
DEBUG instead. |
DEBUG
Log exceptions and print debug output.
|
INFO
Log exceptions only.
|
NONE
No logging.
|
VERBOSE
Same as
DEBUG , and log transformations in bundled integrations. |
Modifier and Type | Method and Description |
---|---|
boolean |
log() |
static Analytics.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Analytics.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Analytics.LogLevel NONE
public static final Analytics.LogLevel INFO
public static final Analytics.LogLevel DEBUG
@Deprecated public static final Analytics.LogLevel BASIC
DEBUG
instead.public static final Analytics.LogLevel VERBOSE
DEBUG
, and log transformations in bundled integrations.public static Analytics.LogLevel[] values()
for (Analytics.LogLevel c : Analytics.LogLevel.values()) System.out.println(c);
public static Analytics.LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean log()