Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c9156f5 authored by Kevin Schoedel's avatar Kevin Schoedel
Browse files

Reduce vr_wm logging.

Controller events ALOGI -> ALOGV.

Change-Id: I942b6b88cc9f3fe35efcb1e3c1ce0c478d1281e1
Test: manual
parent e27fbca4
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -274,15 +274,13 @@ void Application::ProcessControllerInput() {
    }
    controller_data_provider_->UnlockControllerData();
    if (shmem_controller_active_) {
      // TODO(kpschoedel): change to ALOGV or remove.
      ALOGI("Controller shmem orientation: %f %f %f %f",
      ALOGV("Controller shmem orientation: %f %f %f %f",
            controller_orientation_.x(), controller_orientation_.y(),
            controller_orientation_.z(), controller_orientation_.w());
      if (shmem_controller_buttons_) {
        ALOGI("Controller shmem buttons: %017" PRIX64,
        ALOGV("Controller shmem buttons: %017" PRIX64,
            shmem_controller_buttons_);
      }
      return;
    }
  }
}