...
|
...
|
@@ -280,8 +280,9 @@ |
|
|
event.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
|
|
|
|
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
|
|
[params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
|
|
[params setObject:self.ABType?:@"" forKey:JsonKeyEventAB_TYPE];
|
|
|
[params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
|
|
[params setValue:self.ABType forKey:JsonKeyEventAB_TYPE];
|
|
|
|
|
|
event.param = params;
|
|
|
|
...
|
...
|
@@ -325,7 +326,8 @@ |
|
|
}
|
|
|
|
|
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
|
|
[params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
|
|
error.param = params;
|
|
|
// crash 和 rnException 不支持立即发送
|
|
|
if ((self.logStrategy & LogStrategyImmedi) != 0 &&
|
...
|
...
|
@@ -350,7 +352,8 @@ |
|
|
perfermance.sid = self.session;
|
|
|
|
|
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
|
|
[params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
|
|
perfermance.param = params;
|
|
|
// 立即发送策略
|
|
|
// if ((self.logStrategy & LogStrategyImmedi) != 0) {
|
...
|
...
|
@@ -378,7 +381,8 @@ |
|
|
patch.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
|
|
|
|
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
|
|
[params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
[params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
|
|
patch.param = params;
|
|
|
|
|
|
// 立即发送策略
|
...
|
...
|
|