Merge "Bluetooth: fix enable log: display 24h time" am: 17cb857301

am: add7c533c6

Change-Id: Ib10e76a44ee4ea10294b65ba01d2b028df6afe50
This commit is contained in:
Andre Eisenbach
2017-02-28 19:29:07 +00:00
committed by android-build-merger

View File

@@ -167,7 +167,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
} }
public String toString() { 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; (mEnable ? " Enabled " : " Disabled ") + " by " + mPackageName;
} }