Skip to content

Commit 98e15f3

Browse files
platform-views: fix wrong log level (sony#378)
This change fixes a wrong log level setting in platform-views implementation. Signed-off-by: Hidenori Matsubayashi <[email protected]>
1 parent 0501df9 commit 98e15f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flutter/shell/platform/linux_embedded/plugins/platform_views_plugin.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void PlatformViewsPlugin::PlatformViewsTouch(
230230
auto x = std::get<double>(pointer_coord[7]);
231231
auto y = std::get<double>(pointer_coord[8]);
232232

233-
ELINUX_LOG(ERROR) << "Touch the platform view: id = " << view_id
233+
ELINUX_LOG(TRACE) << "Touch the platform view: id = " << view_id
234234
<< ", device_id = " << device_id
235235
<< ", event_type = " << event_type << ", x = " << x
236236
<< ", y = " << y;

0 commit comments

Comments
 (0)