| | |
| | | * LICENSE file in the root directory of this source tree. |
| | | */ |
| | | |
| | | #import <UIKit/UIKit.h> |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | |
| | | |
| | | typedef NSString *FBSDKLoggingBehavior NS_TYPED_ENUM NS_SWIFT_NAME(LoggingBehavior); |
| | | |
| | | /** Include access token in logging. */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorAccessTokens; |
| | | /// Include access token in logging. |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAccessTokens; |
| | | |
| | | /** Log performance characteristics */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorPerformanceCharacteristics; |
| | | /// Log performance characteristics |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorPerformanceCharacteristics; |
| | | |
| | | /** Log FBSDKAppEvents interactions */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorAppEvents; |
| | | /// Log FBSDKAppEvents interactions |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAppEvents; |
| | | |
| | | /** Log Informational occurrences */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorInformational; |
| | | /// Log Informational occurrences |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorInformational; |
| | | |
| | | /** Log cache errors. */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorCacheErrors; |
| | | /// Log cache errors. |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorCacheErrors; |
| | | |
| | | /** Log errors from SDK UI controls */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorUIControlErrors; |
| | | /// Log errors from SDK UI controls |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorUIControlErrors; |
| | | |
| | | /** Log debug warnings from API response, i.e. when friends fields requested, but user_friends permission isn't granted. */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugWarning; |
| | | /// Log debug warnings from API response, i.e. when friends fields requested, but user_friends permission isn't granted. |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugWarning; |
| | | |
| | | /** Log warnings from API response, i.e. when requested feature will be deprecated in next version of API. |
| | | Info is the lowest level of severity, using it will result in logging all previously mentioned levels. |
| | | */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugInfo; |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugInfo; |
| | | |
| | | /** Log errors from SDK network requests */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorNetworkRequests; |
| | | /// Log errors from SDK network requests |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorNetworkRequests; |
| | | |
| | | /** Log errors likely to be preventable by the developer. This is in the default set of enabled logging behaviors. */ |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorDeveloperErrors; |
| | | /// Log errors likely to be preventable by the developer. This is in the default set of enabled logging behaviors. |
| | | FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorDeveloperErrors; |
| | | |
| | | NS_ASSUME_NONNULL_END |