From b40cfc6eca1eafd668327c5b2ca224144dbb3e6b Mon Sep 17 00:00:00 2001 From: Chavi Weingarten Date: Wed, 26 Apr 2023 19:43:43 +0000 Subject: [PATCH] Downgrade log from error to warn in VRI An unepxected error log is occuring, but there are not other issues. Downgrade to a warning and see if other cases occur that can be inspected. Test: N/A Bug: 279792954 Change-Id: I6763b9f95c37b931445901ec3739ce969138abe8 --- core/java/android/view/ViewRootImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java index c0ac04ccd4d8e..9fd2182d5695b 100644 --- a/core/java/android/view/ViewRootImpl.java +++ b/core/java/android/view/ViewRootImpl.java @@ -11317,7 +11317,7 @@ public final class ViewRootImpl implements ViewParent, // to sync the same frame in the same BBQ. That shouldn't be possible, but // if it did happen, invoke markSyncReady so the active SSG doesn't get // stuck. - Log.e(mTag, "Unable to syncNextTransaction. Possibly something else is" + Log.w(mTag, "Unable to syncNextTransaction. Possibly something else is" + " trying to sync?"); surfaceSyncGroup.markSyncReady(); }