Merge "Bluetooth: fix enable log: display 24h time"

This commit is contained in:
Andre Eisenbach
2017-02-28 19:04:13 +00:00
committed by Gerrit Code Review

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