Skip to content

Commit

Permalink
platform-views: fix wrong log level
Browse files Browse the repository at this point in the history
This change fixes a wrong log level setting in platform-views implementation.

Signed-off-by: Hidenori Matsubayashi <Hidenori.Matsubayashi@gmail.com>
  • Loading branch information
HidenoriMatsubayashi committed Aug 21, 2023
1 parent 0501df9 commit 954b288
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void PlatformViewsPlugin::PlatformViewsTouch(
auto x = std::get<double>(pointer_coord[7]);
auto y = std::get<double>(pointer_coord[8]);

ELINUX_LOG(ERROR) << "Touch the platform view: id = " << view_id
ELINUX_LOG(DEBUG) << "Touch the platform view: id = " << view_id
<< ", device_id = " << device_id
<< ", event_type = " << event_type << ", x = " << x
<< ", y = " << y;
Expand Down

0 comments on commit 954b288

Please sign in to comment.