Skip to content

Commit

Permalink
Silent multi touch synchronization logs
Browse files Browse the repository at this point in the history
  • Loading branch information
orontee committed Apr 1, 2024
1 parent 3573947 commit b59def7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ App::App()
task_icon_size, task_icon_size, task_icon_size)} {}

int App::process_event(int event_type, int param_one, int param_two) {
BOOST_LOG_TRIVIAL(debug) << "Processing event of type "
<< format_event_type(event_type);
if (event_type != EVT_MTSYNC) {
// No need to log multi touch synchronization events

BOOST_LOG_TRIVIAL(debug) << "Processing event of type "
<< format_event_type(event_type);
}
if (event_type == EVT_INIT) {
this->setup();
return 1;
Expand Down

0 comments on commit b59def7

Please sign in to comment.