[ios][perf] fix for #593 - trace incorrectly calling `startTraceWithName` instead of just `traceWithName`

This commit is contained in:
Salakar 2017-11-08 08:07:12 +00:00
parent 535de47ee1
commit 80c7faa0b1
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ RCT_EXPORT_MODULE();
if (_traces[identifier]) {
return _traces[identifier];
}
FIRTrace *trace = [FIRPerformance startTraceWithName:identifier];
FIRTrace *trace = [FIRPerformance traceWithName:identifier];
_traces[identifier] = trace;
return trace;
}