You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
567 B
28 lines
567 B
![]()
2 years ago
|
//
|
||
|
// 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
|