com.facebook
Enum LoggingBehavior

java.lang.Object
  extended by java.lang.Enum<LoggingBehavior>
      extended by com.facebook.LoggingBehavior
All Implemented Interfaces:
Serializable, Comparable<LoggingBehavior>

public enum LoggingBehavior
extends Enum<LoggingBehavior>

Specifies different categories of logging messages that can be generated.

See Also:
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

REQUESTS

public static final LoggingBehavior REQUESTS
Indicates that HTTP requests and a summary of responses should be logged.


INCLUDE_ACCESS_TOKENS

public static final LoggingBehavior INCLUDE_ACCESS_TOKENS
Indicates that access tokens should be logged as part of the request logging; normally they are not.


INCLUDE_RAW_RESPONSES

public static final LoggingBehavior INCLUDE_RAW_RESPONSES
Indicates that the entire raw HTTP response for each request should be logged.


CACHE

public static final LoggingBehavior CACHE
Indicates that cache operations should be logged.


DEVELOPER_ERRORS

public static final LoggingBehavior DEVELOPER_ERRORS
Indicates that likely developer errors should be logged. (This is set by default in LoggingBehavior.)

Method Detail

values

public static LoggingBehavior[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (LoggingBehavior c : LoggingBehavior.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LoggingBehavior valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null