summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Lais Andrade <lsandrade@google.com> 2023-01-04 12:41:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-01-04 12:41:10 +0000
commitb189ace63721c5d79ced46b033836d3537d62b29 (patch)
tree3c6d5124331fca4ee04544aae46eb5517181972d
parent9446299a5a4233b69ae0ebc978b97038c16abefc (diff)
parent6c91f60902cfe1010837601ffa6f23da9275ea31 (diff)
Merge "vibrator: fix log format and level issue"
-rw-r--r--services/core/java/com/android/server/vibrator/VibratorManagerService.java4
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 97275583ac36..6043caa803e5 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),