From fd24f87a7a144052ea263b224285d2a08794b5e4 Mon Sep 17 00:00:00 2001 From: Greg Kaiser Date: Tue, 23 Feb 2021 19:40:04 -0800 Subject: [PATCH] Log debug info at Debug level All logs under the DEBUG flag in this file are (properly) logging at Log.d(), except for one at Log.e(), claiming an "E"rror in the system. We change that to Log.d() to avoid confusing folks debugging other issues who are looking through logcat. Bug: 181080516 Test: TreeHugger Change-Id: I4ff6fd9a6dd6caa7516620125762b7c0442b74b4 --- .../systemui/navigationbar/NavigationModeController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/navigationbar/NavigationModeController.java b/packages/SystemUI/src/com/android/systemui/navigationbar/NavigationModeController.java index 65d4e23f7734c..870e3bed2b7af 100644 --- a/packages/SystemUI/src/com/android/systemui/navigationbar/NavigationModeController.java +++ b/packages/SystemUI/src/com/android/systemui/navigationbar/NavigationModeController.java @@ -132,7 +132,7 @@ public class NavigationModeController implements Dumpable { Settings.Secure.putString(mCurrentUserContext.getContentResolver(), Secure.NAVIGATION_MODE, String.valueOf(mode))); if (DEBUG) { - Log.e(TAG, "updateCurrentInteractionMode: mode=" + mode); + Log.d(TAG, "updateCurrentInteractionMode: mode=" + mode); dumpAssetPaths(mCurrentUserContext); }