public enum LoggingBehavior extends java.lang.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.
|
GRAPH_API_DEBUG_INFO
Log warnings from API response, e.g.
|
GRAPH_API_DEBUG_WARNING
Log debug warnings from API response, e.g.
|
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 | Method and Description |
---|---|
static LoggingBehavior |
valueOf(java.lang.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
public static final LoggingBehavior GRAPH_API_DEBUG_WARNING
public static final LoggingBehavior GRAPH_API_DEBUG_INFO
public static LoggingBehavior[] values()
for (LoggingBehavior c : LoggingBehavior.values()) System.out.println(c);
public static LoggingBehavior 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 null