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

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