diff options
| author | 2018-02-22 03:13:04 +0000 | |
|---|---|---|
| committer | 2018-02-22 03:13:04 +0000 | |
| commit | f9f44c954bdf3da27d1c1db889dd2ab919bba50e (patch) | |
| tree | 9fb0476196d32ecdc419157d96282b1d3a3a6a33 | |
| parent | 93068d7ab419e91b325cbf5da7a9d1e8ea518935 (diff) | |
| parent | 32f2d4f320bd8f002527f52548b919e7dc222fb6 (diff) | |
Merge "Statsd anomaly output log fix"
| -rw-r--r-- | cmds/statsd/src/anomaly/AnomalyTracker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/statsd/src/anomaly/AnomalyTracker.cpp b/cmds/statsd/src/anomaly/AnomalyTracker.cpp index 6553a1435be6..babe0fc36fb5 100644 --- a/cmds/statsd/src/anomaly/AnomalyTracker.cpp +++ b/cmds/statsd/src/anomaly/AnomalyTracker.cpp @@ -192,7 +192,7 @@ void AnomalyTracker::declareAnomaly(const uint64_t& timestampNs, const MetricDim if (!mSubscriptions.empty()) { if (mAlert.has_id()) { - ALOGI("An anomaly (%llu) has occurred! Informing subscribers.", mAlert.id()); + ALOGI("An anomaly (%lld) has occurred! Informing subscribers.", mAlert.id()); informSubscribers(key); } else { ALOGI("An anomaly (with no id) has occurred! Not informing any subscribers."); |