Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(781)

Unified Diff: components/proximity_auth/proximity_monitor_impl.cc

Issue 2861913002: [EasyUnlock] Fix crash when the same user pod is refocused. (Closed)
Patch Set: fixes Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/proximity_auth/proximity_auth_system_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/proximity_monitor_impl.cc
diff --git a/components/proximity_auth/proximity_monitor_impl.cc b/components/proximity_auth/proximity_monitor_impl.cc
index 22bedf43eb816f15e66009457e7a66afa588b5cc..90821074e40f43a5aa958df48a34c6f76eaf77b9 100644
--- a/components/proximity_auth/proximity_monitor_impl.cc
+++ b/components/proximity_auth/proximity_monitor_impl.cc
@@ -192,9 +192,8 @@ void ProximityMonitorImpl::CheckForProximityStateChange() {
bool is_now_in_proximity =
rssi_rolling_average_ && *rssi_rolling_average_ > kRssiThreshold;
- if (rssi_rolling_average_) {
- LOG(WARNING) << "RSSI: " << *rssi_rolling_average_;
- }
+ if (rssi_rolling_average_)
+ PA_LOG(INFO) << " Rolling RSSI: " << *rssi_rolling_average_;
if (remote_device_is_in_proximity_ != is_now_in_proximity) {
PA_LOG(INFO) << "[Proximity] Updated proximity state: "
« no previous file with comments | « components/proximity_auth/proximity_auth_system_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698