From 5c9156f5819d079264bcdf5d292bc8e036a20e71 Mon Sep 17 00:00:00 2001 From: Kevin Schoedel Date: Wed, 22 Mar 2017 16:24:00 -0400 Subject: [PATCH] Reduce vr_wm logging. Controller events ALOGI -> ALOGV. Change-Id: I942b6b88cc9f3fe35efcb1e3c1ce0c478d1281e1 Test: manual --- services/vr/vr_window_manager/application.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/services/vr/vr_window_manager/application.cpp b/services/vr/vr_window_manager/application.cpp index 3dfd9f1a9f..7c6107633a 100644 --- a/services/vr/vr_window_manager/application.cpp +++ b/services/vr/vr_window_manager/application.cpp @@ -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; } } } -- 2.11.0