diff options
| author | 2021-02-23 20:48:05 +0000 | |
|---|---|---|
| committer | 2021-02-23 20:48:05 +0000 | |
| commit | 60375f931be7ad80166db553742bce7e87348897 (patch) | |
| tree | 0a07cdf4efdd2efda2c09533ca71d201ddbc8aee | |
| parent | c13d22555ff9268437a92707226d25616ed969fc (diff) | |
| parent | 6fc16d882060c50d6fb2e9f1363d31657e9711cb (diff) | |
Merge "Make the new RoR atoms compile" into sc-dev
| -rw-r--r-- | services/core/java/com/android/server/locksettings/RebootEscrowManager.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/locksettings/RebootEscrowManager.java b/services/core/java/com/android/server/locksettings/RebootEscrowManager.java index 30ea5556b41c..7e00fd69a148 100644 --- a/services/core/java/com/android/server/locksettings/RebootEscrowManager.java +++ b/services/core/java/com/android/server/locksettings/RebootEscrowManager.java @@ -194,7 +194,9 @@ class RebootEscrowManager { } public void reportMetric(boolean success) { - FrameworkStatsLog.write(FrameworkStatsLog.REBOOT_ESCROW_RECOVERY_REPORTED, success); + // TODO(b/179105110) design error code; and report the true value for other fields. + FrameworkStatsLog.write(FrameworkStatsLog.REBOOT_ESCROW_RECOVERY_REPORTED, 0, 1, 1, + -1, 0); } public RebootEscrowEventLog getEventLog() { |