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

Commit c61ab518 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

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