developer
2023-05-20 e12c7b4c22df631ebdcd16b2f98fbef8f738f92f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  AppMonitorBase.h
//  AppMonitor
//
//  Created by junzhan on 14-10-14.
//  Copyright (c) 2014年 君展. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
@interface AppMonitorBase : NSObject
/**
 *  日志写入UT间隔时间(单位秒).默认300秒, -1代表关闭. 会监听配置中心做变化
 */
+ (void)setWriteLogInterval:(NSInteger)writeLogInterval;
 
+ (NSInteger)writeLogInterval;
 
 
/**
 *  将appmonitor的日志立刻强制写入本地(UT),避免丢失。请不要私自调用,使用前咨询@君展
 */
+ (void)flushAllLog;
 
 
@end