Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0a1cb54 authored by Lais Andrade's avatar Lais Andrade Committed by Automerger Merge Worker
Browse files

Merge "vibrator: fix log format and level issue" am: b189ace6 am: c61ab518 am: 1c4af6cc

parents df380260 1c4af6cc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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),