|
@@ -280,8 +280,9 @@ |
|
@@ -280,8 +280,9 @@ |
280
|
event.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
280
|
event.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
281
|
|
281
|
|
282
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
282
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
283
|
- [params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
|
|
284
|
- [params setObject:self.ABType?:@"" forKey:JsonKeyEventAB_TYPE];
|
283
|
+ [params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
284
|
+ [params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
|
|
285
|
+ [params setValue:self.ABType forKey:JsonKeyEventAB_TYPE];
|
285
|
|
286
|
|
286
|
event.param = params;
|
287
|
event.param = params;
|
287
|
|
288
|
|
|
@@ -325,7 +326,8 @@ |
|
@@ -325,7 +326,8 @@ |
325
|
}
|
326
|
}
|
326
|
|
327
|
|
327
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
328
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
328
|
- [params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
329
|
+ [params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
330
|
+ [params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
329
|
error.param = params;
|
331
|
error.param = params;
|
330
|
// crash 和 rnException 不支持立即发送
|
332
|
// crash 和 rnException 不支持立即发送
|
331
|
if ((self.logStrategy & LogStrategyImmedi) != 0 &&
|
333
|
if ((self.logStrategy & LogStrategyImmedi) != 0 &&
|
|
@@ -350,7 +352,8 @@ |
|
@@ -350,7 +352,8 @@ |
350
|
perfermance.sid = self.session;
|
352
|
perfermance.sid = self.session;
|
351
|
|
353
|
|
352
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
354
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
353
|
- [params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
355
|
+ [params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
356
|
+ [params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
354
|
perfermance.param = params;
|
357
|
perfermance.param = params;
|
355
|
// 立即发送策略
|
358
|
// 立即发送策略
|
356
|
// if ((self.logStrategy & LogStrategyImmedi) != 0) {
|
359
|
// if ((self.logStrategy & LogStrategyImmedi) != 0) {
|
|
@@ -378,7 +381,8 @@ |
|
@@ -378,7 +381,8 @@ |
378
|
patch.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
381
|
patch.index = [NSString stringWithFormat:@"%lu", (unsigned long)self.eventIndex];
|
379
|
|
382
|
|
380
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
383
|
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:param];
|
381
|
- [params setObject:self.cid?:@"" forKey:JsonKeyEventCID];
|
384
|
+ [params setValue:self.cid forKey:JsonKeyEventCID];
|
|
|
385
|
+ [params setValue:self.subcid forKey:JsonKeyEventSUBCID];
|
382
|
patch.param = params;
|
386
|
patch.param = params;
|
383
|
|
387
|
|
384
|
// 立即发送策略
|
388
|
// 立即发送策略
|