@@ -179,7 +179,7 @@ public void createForPlatformViewLayer(
179
179
final PlatformView platformView = factory .create (context , viewId , createParams );
180
180
platformView .getView ().setLayoutDirection (request .direction );
181
181
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 );
183
183
}
184
184
185
185
@ TargetApi (20 )
@@ -241,7 +241,7 @@ public long createForTextureLayer(
241
241
final boolean shouldUseVirtualDisplay =
242
242
ViewUtils .hasChildViewOfType (embeddedView , VIEW_TYPES_REQUIRE_VD );
243
243
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 );
245
245
// API level 20 is required to use VirtualDisplay#setSurface.
246
246
ensureValidAndroidVersion (20 );
247
247
@@ -283,7 +283,7 @@ public long createForTextureLayer(
283
283
284
284
// API level 23 is required to use Surface#lockHardwareCanvas().
285
285
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 );
287
287
288
288
PlatformViewWrapper wrapperView ;
289
289
long txId ;
0 commit comments