File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
firebase-perf/src/main/java/com/google/firebase/perf/transport Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ private static String getLogcatMsg(TraceMetric traceMetric) {
618
618
long durationInUs = traceMetric .getDurationUs ();
619
619
return String .format (
620
620
Locale .ENGLISH ,
621
- "trace metric: %s (duration: %.4fms )" ,
621
+ "trace metric: %s (duration: %sms )" ,
622
622
traceMetric .getName (),
623
623
new DecimalFormat ("#.####" ).format (durationInUs / 1000.0 ));
624
624
}
@@ -636,7 +636,7 @@ private static String getLogcatMsg(NetworkRequestMetric networkRequestMetric) {
636
636
637
637
return String .format (
638
638
Locale .ENGLISH ,
639
- "network request trace: %s (responseCode: %s, responseTime: %.4fms )" ,
639
+ "network request trace: %s (responseCode: %s, responseTime: %sms )" ,
640
640
networkRequestMetric .getUrl (),
641
641
responseCode ,
642
642
new DecimalFormat ("#.####" ).format (durationInUs / 1000.0 ));
You can’t perform that action at this time.
0 commit comments