|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LoggingBehavior>
com.facebook.LoggingBehavior
public enum LoggingBehavior
Specifies different categories of logging messages that can be generated.
Settings.addLoggingBehavior(LoggingBehavior)
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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 DEVELOPER_ERRORS
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |