public enum LoggingBehavior extends Enum<LoggingBehavior>
Enum Constant and Description |
---|
APP_EVENTS
Indicates the App Events-related operations should be logged.
|
CACHE
Indicates that cache operations should be logged.
|
DEVELOPER_ERRORS
Indicates that likely developer errors should be logged.
|
INCLUDE_ACCESS_TOKENS
Indicates that access tokens should be logged as part of the request logging; normally they are not.
|
INCLUDE_RAW_RESPONSES
Indicates that the entire raw HTTP response for each request should be logged.
|
REQUESTS
Indicates that HTTP requests and a summary of responses should be logged.
|
Modifier and Type | Field and Description |
---|---|
static LoggingBehavior |
INSIGHTS
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static LoggingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingBehavior REQUESTS
public static final LoggingBehavior INCLUDE_ACCESS_TOKENS
public static final LoggingBehavior INCLUDE_RAW_RESPONSES
public static final LoggingBehavior CACHE
public static final LoggingBehavior APP_EVENTS
public static final LoggingBehavior DEVELOPER_ERRORS
@Deprecated public static final LoggingBehavior INSIGHTS
public static LoggingBehavior[] values()
for (LoggingBehavior c : LoggingBehavior.values()) System.out.println(c);
public static LoggingBehavior 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 © 2014. All rights reserved.