From 98e15f31976b8712949afe963322e950de7cfdb2 Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Mon, 21 Aug 2023 11:21:44 +0000 Subject: [PATCH] platform-views: fix wrong log level (#378) This change fixes a wrong log level setting in platform-views implementation. Signed-off-by: Hidenori Matsubayashi --- .../platform/linux_embedded/plugins/platform_views_plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flutter/shell/platform/linux_embedded/plugins/platform_views_plugin.cc b/src/flutter/shell/platform/linux_embedded/plugins/platform_views_plugin.cc index c2bc5cf..81b2946 100644 --- a/src/flutter/shell/platform/linux_embedded/plugins/platform_views_plugin.cc +++ b/src/flutter/shell/platform/linux_embedded/plugins/platform_views_plugin.cc @@ -230,7 +230,7 @@ void PlatformViewsPlugin::PlatformViewsTouch( auto x = std::get(pointer_coord[7]); auto y = std::get(pointer_coord[8]); - ELINUX_LOG(ERROR) << "Touch the platform view: id = " << view_id + ELINUX_LOG(TRACE) << "Touch the platform view: id = " << view_id << ", device_id = " << device_id << ", event_type = " << event_type << ", x = " << x << ", y = " << y;