Bluetooth: fix enable log: display 24h time

Test: adb bugreport at 1pm, observe 13:xx:yy instead of 01:xx:yy
Change-Id: I172dcc63f0f43563ec692349a9434f63c55eac25
This commit is contained in:
Marie Janssen
2017-02-24 11:06:33 -08:00
committed by Andre Eisenbach
parent 924878a752
commit 6837ead33d

View File

@@ -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;
}