diff options
| author | 2023-01-04 13:43:02 +0000 | |
|---|---|---|
| committer | 2023-01-04 13:43:02 +0000 | |
| commit | 1c4af6cc98c16793aa905b89f762f0ff2c35edeb (patch) | |
| tree | e74f46163ce2c649ffb53acebca2f1d7dd03d3cc | |
| parent | 9b16d8e4b4b2403470f0b808ab56bff311e6b976 (diff) | |
| parent | c61ab518a5ec27f4cc5d9f0489a5c101604bb397 (diff) | |
Merge "vibrator: fix log format and level issue" am: b189ace637 am: c61ab518a5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2370170
Change-Id: I6db60f092e3c0079d0165abb7398bd254223081b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | services/core/java/com/android/server/vibrator/VibratorManagerService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/vibrator/VibratorManagerService.java b/services/core/java/com/android/server/vibrator/VibratorManagerService.java index 14693599c3ec..17af318be378 100644 --- a/services/core/java/com/android/server/vibrator/VibratorManagerService.java +++ b/services/core/java/com/android/server/vibrator/VibratorManagerService.java @@ -1733,7 +1733,7 @@ public class VibratorManagerService extends IVibratorManagerService.Stub { setExternalControl(true, vibHolder.stats); } if (DEBUG) { - Slog.e(TAG, "Playing external vibration: " + vib); + Slog.d(TAG, "Playing external vibration: " + vib); } // Vibrator will start receiving data from external channels after this point. // Report current time as the vibration start time, for debugging. @@ -1747,7 +1747,7 @@ public class VibratorManagerService extends IVibratorManagerService.Stub { if (mCurrentExternalVibration != null && mCurrentExternalVibration.isHoldingSameVibration(vib)) { if (DEBUG) { - Slog.e(TAG, "Stopping external vibration" + vib); + Slog.d(TAG, "Stopping external vibration: " + vib); } endExternalVibrateLocked( new Vibration.EndInfo(Vibration.Status.FINISHED), |