bonus-material-app/nativeplugins/Mpaas-Scan/ios/APRemoteLogging.framework/Headers/APRemoteLogger+AntLog.h

41 lines
751 B
C
Raw Permalink Normal View History

2024-12-20 09:23:59 +08:00
//
// APRemoteLogger+AntLog.h
// APRemoteLogging
//
// Created by 卡迩 on 2017/9/29.
// Copyright © 2017年 Alipay. All rights reserved.
//
#import <APRemoteLogging/APRemoteLogging.h>
#import "AntBehavior.h"
#ifdef SDK_IS4_ALIPAY
#import "AntPerformance.h"
#endif
@interface APRemoteLogger (AntLog)
/**
/Log功能
@param enable YES开启
*/
+ (void)enableLog:(BOOL)enable;
/**
@param behavior . @see \c AntBehavior.
*/
+ (void)logBehavior:(AntBehavior *)behavior;
#ifdef SDK_IS4_ALIPAY
/**
@param performance . @see \c AntPerformance.
*/
+ (void)logPerformance:(AntPerformance *)performance;
#endif
@end