AntLogSelfMonitor.h 506 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AntLogSelfMonitor.h
  3. // APRemoteLogging
  4. //
  5. // Created by 卡迩 on 2017/8/11.
  6. // Copyright © 2017年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. extern NSString *const kLogMonitorBizId;
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * LogMonitor 本地日志
  15. */
  16. void AntLogMonitor(NSString *tag, NSString *format, ...);
  17. /**
  18. * LogMonitor 埋点
  19. */
  20. void AntLogRemoteMonitor(NSString *seed,NSArray *params);
  21. #ifdef __cplusplus
  22. }
  23. #endif