APPrimitiveLog.h 411 B

123456789101112131415161718192021222324
  1. //
  2. // APPrimitiveLog.h
  3. // APMobileFoundation
  4. //
  5. // Created by taoyuan on 16/6/6.
  6. // Copyright © 2016年 Alipay. All rights reserved.
  7. //
  8. #ifndef APPrimitiveLog_h
  9. #define APPrimitiveLog_h
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. void APPrimitiveLog(const char *tag, int level, const char *format, ...) __attribute__((deprecated("Use APLogInfo instead")));
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif