酷店

AppMonitorBase.h 567B

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