File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
main/java/com/google/firebase/perf/session/gauges
test/java/com/google/firebase/perf/session/gauges Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -256,8 +256,7 @@ public void stopCollectingGauges() {
256256 private void syncFlush (String sessionId , ApplicationProcessState appState ) {
257257 if (sessionId .equals (Constants .UNDEFINED_AQS_ID )) {
258258 // TODO(b/394127311): Use DebugEnforcementCheck.
259- // This will currently log those sessions to Constants.UNDEFINED_AQS_ID)
260- logger .debug ("Flushing app start gauge metrics to an undefined session ID." );
259+ logger .debug ("Flushing gauge metrics to an undefined session ID." );
261260 }
262261 GaugeMetric .Builder gaugeMetricBuilder = GaugeMetric .newBuilder ();
263262
Original file line number Diff line number Diff line change @@ -451,7 +451,6 @@ public void testGaugeManagerDoesNotClearTheQueueUnlessUpdated() {
451451 assertThat (fakeCpuGaugeCollector .cpuMetricReadings ).isNotEmpty ();
452452 assertThat (fakeMemoryGaugeCollector .memoryMetricReadings ).isNotEmpty ();
453453
454-
455454 fakeSession .setAQSId (new SessionSubscriber .SessionDetails ("aqsSessionId" ));
456455 testGaugeManager .updateGaugeCollection (ApplicationProcessState .FOREGROUND );
457456
@@ -462,8 +461,6 @@ public void testGaugeManagerDoesNotClearTheQueueUnlessUpdated() {
462461 assertThat (fakeScheduledExecutorService .isEmpty ()).isFalse ();
463462 }
464463
465-
466-
467464 @ Test
468465 public void testLogGaugeMetadataSendDataToTransport () {
469466 when (fakeGaugeMetadataManager .getDeviceRamSizeKb ()).thenReturn (2000 );
You can’t perform that action at this time.
0 commit comments