【发布时间】:2016-12-07 07:52:30
【问题描述】:
我正在尝试使用 Firebase 记录自定义事件。我想用事件记录一些长的事件描述文本。我在 Firebase 仪表板中找不到阅读 "full_text" 字段的位置。我可以正确找到"name" 字段,但"full_text" 在哪里?
[FIRAnalytics logEventWithName:[NSString stringWithFormat:@"3: %@",response.description]
parameters:@{
@"name": @"InAppPurchaseCrash1" ,
@"full_text": @"Some description about the event log"
}];
例如,使用此代码,我可以在 Firebase 仪表板中看到“InAppPurchaseCrash1”,但看不到“关于事件日志的一些描述”。
【问题讨论】:
标签: ios objective-c firebase firebase-analytics