diff options
| author | 2023-01-04 14:03:58 +0000 | |
|---|---|---|
| committer | 2023-01-04 14:03:58 +0000 | |
| commit | b0a1cb5488cabceeb44384b3196de6e4ae662b4c (patch) | |
| tree | 987b1f79632ea41ebb46570ac59414cd5a9cb969 | |
| parent | df380260f02699916c4ae5816a70e8632e391d7e (diff) | |
| parent | 1c4af6cc98c16793aa905b89f762f0ff2c35edeb (diff) | |
Merge "vibrator: fix log format and level issue" am: b189ace637 am: c61ab518a5 am: 1c4af6cc98
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2370170
Change-Id: I0d94cd1db9fb6b6c5af2f09c066ca99f5f002bb9
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 8613b5027d57..966329e486f9 100644 --- a/services/core/java/com/android/server/vibrator/VibratorManagerService.java +++ b/services/core/java/com/android/server/vibrator/VibratorManagerService.java @@ -1749,7 +1749,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. @@ -1763,7 +1763,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), |