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

Commit 6837ead3 authored by Marie Janssen's avatar Marie Janssen Committed by Andre Eisenbach
Browse files

Bluetooth: fix enable log: display 24h time

Test: adb bugreport at 1pm, observe 13:xx:yy instead of 01:xx:yy
Change-Id: I172dcc63f0f43563ec692349a9434f63c55eac25
parent 924878a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
        }

        public String toString() {
            return android.text.format.DateFormat.format("MM-dd hh:mm:ss ", mTimestamp) +
            return android.text.format.DateFormat.format("MM-dd HH:mm:ss ", mTimestamp) +
                    (mEnable ? "  Enabled " : " Disabled ") + " by " + mPackageName;
        }