public static enum InfluxDB.LogLevel extends Enum<InfluxDB.LogLevel>
| Enum Constant and Description |
|---|
BASIC
Log only the request method and URL and the response status code and execution time.
|
FULL
Log the headers, body, and metadata for both requests and responses.
|
HEADERS
Log the basic information along with request and response headers.
|
NONE
No logging.
|
| Modifier and Type | Method and Description |
|---|---|
static InfluxDB.LogLevel |
parseLogLevel(String value)
Parses the string argument as a LogLevel constant.
|
static InfluxDB.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfluxDB.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfluxDB.LogLevel NONE
public static final InfluxDB.LogLevel BASIC
public static final InfluxDB.LogLevel HEADERS
public static final InfluxDB.LogLevel FULL
Note: This requires that the entire request and response body be buffered in memory!
public static InfluxDB.LogLevel[] values()
for (InfluxDB.LogLevel c : InfluxDB.LogLevel.values()) System.out.println(c);
public static InfluxDB.LogLevel 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 nullpublic static InfluxDB.LogLevel parseLogLevel(String value)
value - a String containing the LogLevel constant
representation to be parsedNONE for null or any invalid String representation.Copyright © 2018. All rights reserved.