8#import <Foundation/Foundation.h>
11@protocol SCAdLogDelegate <NSObject>
12- (void)logString:(nullable NSString*)logString;
33@property (nonatomic,
class) BOOL loggingEnabled;
35@property (nonatomic, weak,
class) id<SCAdLogDelegate> _Nullable logDelegate;
Use this class to enable logging, helping you with troubleshooting any kind of errorous behavior of S...
Definition: SCAdLog.h:17
LogLevel
Definition: SCAdLog.h:21
@ LogVerbose
Print every single log message.
Definition: SCAdLog.h:23
@ LogError
Print only Error messages.
Definition: SCAdLog.h:29
@ LogWarning
Print Warning and Error messages.
Definition: SCAdLog.h:27
@ LogDebug
Print Debug, Warning and Error messages.
Definition: SCAdLog.h:25