bonus-material-app/nativeplugins/Mpaas-Scan/ios/MPMasAdapter.framework/Headers/MPRemoteLoggingInterface.h

55 lines
1.9 KiB
C
Raw Normal View History

2024-12-20 09:23:59 +08:00
//
// MPRemoteLoggingInterface.h
// MPMasAdapter
//
// Created by kuoxuan on 2019/2/22.
// Copyright © 2019 mPaaS. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MPRemoteLoggingInterface : NSObject
/**
* IDID
* @param bizType behavior
* @param eventId , ID
* @param extParam key-value的字符串计入日志
*/
+ (void)writeLogWithBizType:(NSString *)bizType
eventId:(NSString *)eventId
extParam:(NSDictionary *)extParam;
/**
* IDID
* bizType behavior
* @param actionId action ID actionID定义在APMonitorPointDataDefines.h
* @param eventId ID
* @param extParam key-value的字符串计入日志
*/
+ (void)writeLogWithActionId:(NSString *)actionId
eventId:(NSString *)eventId
extParam:(NSDictionary *)extParam __attribute__((deprecated("请使用 writeLogWithBizType:eventId:extParam 方法")));
/**
*
*/
+ (void)upload;
/**
APM
*/
+ (void)writeAPMNetLog:(NSDictionary*)extParam;
@end
NS_ASSUME_NONNULL_END