Revert "Revert "Logging: Bluetooth Enabled""

This reverts commit 46850eb3d2.

Reason for revert: The dummy StatsLog class was merged into stage-aosp-master and oc-mr1-dev-plus-aosp, which were the branches that broke initially.

Change-Id: Iab9bac487d845db0ba70b2622679523604b4944e
This commit is contained in:
Tej Singh
2018-03-22 18:30:31 +00:00
parent 46850eb3d2
commit e7e9fca001

View File

@@ -60,6 +60,7 @@ import android.os.UserManagerInternal.UserRestrictionsListener;
import android.provider.Settings;
import android.provider.Settings.SettingNotFoundException;
import android.util.Slog;
import android.util.StatsLog;
import com.android.internal.R;
import com.android.internal.util.DumpUtils;
@@ -2154,6 +2155,11 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
mActiveLogs.add(
new ActiveLog(reason, packageName, enable, System.currentTimeMillis()));
}
int state = enable ? StatsLog.BLUETOOTH_ENABLED_STATE_CHANGED__STATE__ENABLED :
StatsLog.BLUETOOTH_ENABLED_STATE_CHANGED__STATE__DISABLED;
StatsLog.write_non_chained(StatsLog.BLUETOOTH_ENABLED_STATE_CHANGED,
Binder.getCallingUid(), null, state, reason, packageName);
}
private void addCrashLog() {