AvayaWebRTCConnectSDK
AOLogger.h
Go to the documentation of this file.
1//
2// AOLogger.h
3// OceanaCustomerWebVoiceVideo
4//
5// Created by Mohan on 17/01/20.
6// Copyright © 2020 Avaya. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <AvayaClientServicesLite/CSClient.h>
11NS_ASSUME_NONNULL_BEGIN
12
17@protocol AOLoggerDelegate <NSObject>
18
24- (void)didPrintLog :(CSLogLevel)level withTag:(NSString * _Nullable)tag message:(NSString * _Nonnull)message ;
25
26@end
31@interface AOLogger : NSObject
32+ (instancetype)sharedInstance;
33@property (nonatomic, weak) id<AOLoggerDelegate> aoLoggerDelegate;
34-(void) addLogToFile :(CSLogLevel)level withTag:(NSString * _Nullable)tag message:(NSString * _Nonnull)message ;
35@end
36
37NS_ASSUME_NONNULL_END
Definition: AOLogger.h:32
instancetype sharedInstance()
id< AOLoggerDelegate > aoLoggerDelegate
Definition: AOLogger.h:33
Definition: AOLogger.h:17