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

Remove log statements that did not help. #51825

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ public void waitUntilFlutterRendered() {
super.waitUntilFlutterRendered();

try {
// TODO: Remove after debugging https://github.com/flutter/flutter/issues/145988.
io.flutter.Log.i("Scenarios", "waitUntilFlutterRendered() | firstFrameLatch");
firstFrameLatch.await();
} catch (InterruptedException e) {
throw new RuntimeException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import android.view.WindowManager;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import io.flutter.Log;
import io.flutter.embedding.android.FlutterActivity;
import io.flutter.embedding.engine.FlutterEngine;
import java.util.concurrent.CountDownLatch;
Expand Down Expand Up @@ -45,8 +44,6 @@ protected void notifyFlutterRendered() {

public void waitUntilFlutterRendered() {
try {
// TODO: Remove after debugging https://github.com/flutter/flutter/issues/145988.
Log.i("Scenarios", "waitUntilFlutterRendered() | flutterUiRenderedLatch");
flutterUiRenderedLatch.await();
} catch (InterruptedException e) {
throw new RuntimeException(e);
Expand Down
6 changes: 0 additions & 6 deletions testing/scenario_app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,10 @@ void _onBeginFrame(Duration duration) {
return;
}
currentScenario!.onBeginFrame(duration);

// TODO(team): Remove after debugging https://github.com/flutter/flutter/issues/145988.
print('onBeginFrame: $duration');
}

void _onDrawFrame() {
currentScenario?.onDrawFrame();

// TODO(team): Remove after debugging https://github.com/flutter/flutter/issues/145988.
print('onDrawFrame');
}

void _onMetricsChanged() {
Expand Down