Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 9cc9cdc

Browse files
authored
Remove log statements that did not help. (#51825)
Introduced in #51789, but none of the crashes/hangs on CI seem related to these events, so removing.
1 parent 60c32c0 commit 9cc9cdc

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

testing/scenario_app/android/app/src/main/java/dev/flutter/scenarios/ExternalTextureFlutterActivity.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ public void waitUntilFlutterRendered() {
9191
super.waitUntilFlutterRendered();
9292

9393
try {
94-
// TODO: Remove after debugging https://github.com/flutter/flutter/issues/145988.
95-
io.flutter.Log.i("Scenarios", "waitUntilFlutterRendered() | firstFrameLatch");
9694
firstFrameLatch.await();
9795
} catch (InterruptedException e) {
9896
throw new RuntimeException(e);

testing/scenario_app/android/app/src/main/java/dev/flutter/scenarios/TestableFlutterActivity.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import android.view.WindowManager;
99
import androidx.annotation.NonNull;
1010
import androidx.annotation.Nullable;
11-
import io.flutter.Log;
1211
import io.flutter.embedding.android.FlutterActivity;
1312
import io.flutter.embedding.engine.FlutterEngine;
1413
import java.util.concurrent.CountDownLatch;
@@ -45,8 +44,6 @@ protected void notifyFlutterRendered() {
4544

4645
public void waitUntilFlutterRendered() {
4746
try {
48-
// TODO: Remove after debugging https://github.com/flutter/flutter/issues/145988.
49-
Log.i("Scenarios", "waitUntilFlutterRendered() | flutterUiRenderedLatch");
5047
flutterUiRenderedLatch.await();
5148
} catch (InterruptedException e) {
5249
throw new RuntimeException(e);

testing/scenario_app/lib/main.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,10 @@ void _onBeginFrame(Duration duration) {
6060
return;
6161
}
6262
currentScenario!.onBeginFrame(duration);
63-
64-
// TODO(team): Remove after debugging https://github.com/flutter/flutter/issues/145988.
65-
print('onBeginFrame: $duration');
6663
}
6764

6865
void _onDrawFrame() {
6966
currentScenario?.onDrawFrame();
70-
71-
// TODO(team): Remove after debugging https://github.com/flutter/flutter/issues/145988.
72-
print('onDrawFrame');
7367
}
7468

7569
void _onMetricsChanged() {

0 commit comments

Comments
 (0)