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

am: 17cb857301

Change-Id: Ic9ba7b27e9ad997a6f8ba0ae6e4794903ef7806a
This commit is contained in:
Andre Eisenbach
2017-02-28 19:14:58 +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;
} }