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

Commit 03ead17

Browse files
author
Emmanuel Garcia
committed
use info
1 parent 25e0865 commit 03ead17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void createForPlatformViewLayer(
179179
final PlatformView platformView = factory.create(context, viewId, createParams);
180180
platformView.getView().setLayoutDirection(request.direction);
181181
platformViews.put(viewId, platformView);
182-
Log.v(TAG, "Using hybrid composition for platform view: " + viewId);
182+
Log.i(TAG, "Using hybrid composition for platform view: " + viewId);
183183
}
184184

185185
@TargetApi(20)
@@ -241,7 +241,7 @@ public long createForTextureLayer(
241241
final boolean shouldUseVirtualDisplay =
242242
ViewUtils.hasChildViewOfType(embeddedView, VIEW_TYPES_REQUIRE_VD);
243243
if (!usesSoftwareRendering && shouldUseVirtualDisplay) {
244-
Log.v(TAG, "Hosting view in a virtual display for platform view: " + viewId);
244+
Log.i(TAG, "Hosting view in a virtual display for platform view: " + viewId);
245245
// API level 20 is required to use VirtualDisplay#setSurface.
246246
ensureValidAndroidVersion(20);
247247

@@ -283,7 +283,7 @@ public long createForTextureLayer(
283283

284284
// API level 23 is required to use Surface#lockHardwareCanvas().
285285
ensureValidAndroidVersion(23);
286-
Log.v(TAG, "Hosting view in view hierarchy for platform view: " + viewId);
286+
Log.i(TAG, "Hosting view in view hierarchy for platform view: " + viewId);
287287

288288
PlatformViewWrapper wrapperView;
289289
long txId;

0 commit comments

Comments
 (0)