We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee33c04 commit 5007196Copy full SHA for 5007196
QCloudTrack/Classes/Cls/QCloudCLSTrackService.m
@@ -85,7 +85,7 @@ -(void)_reportWithEventCode:(NSString *)eventCode params:(NSDictionary *)params{
85
Log* log = [[Log alloc] init];
86
[params enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
87
if (obj && key) {
88
- [log PutContent:key value:obj];
+ [log PutContent:key value:[NSString stringWithFormat:@"%@",obj]];
89
}
90
}];
91
LogProducerResult result = [self.clsClient PostLog:log];
0 commit comments