SmartclipSDKiOS 3.0.0
Smartclip Advertisement Framework for iOS
Loading...
Searching...
No Matches
SCAdLog.h
1//
2// SCAdLog.h
3// SmartclipSDKiOS
4//
5// Copyright © 2018 smartclip Holding AG. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9
11@protocol SCAdLogDelegate <NSObject>
12- (void)logString:(nullable NSString*)logString;
13@end
14
16@interface SCAdLog : NSObject
17
21typedef enum LogLevel {
30} LogLevel;
31
33@property (nonatomic, class) BOOL loggingEnabled;
35@property (nonatomic, weak, class) id<SCAdLogDelegate> _Nullable logDelegate;
36
38+ (void)setLogLevel:(LogLevel)level;
40+ (LogLevel)getLogLevel;
41@end
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