Index: components/proximity_auth/remote_device_life_cycle_impl.cc |
diff --git a/components/proximity_auth/remote_device_life_cycle_impl.cc b/components/proximity_auth/remote_device_life_cycle_impl.cc |
index 5a9709a285c594489ff54a05cb8c19056643dc24..5e57d287e34f813fae891404865d127950089963 100644 |
--- a/components/proximity_auth/remote_device_life_cycle_impl.cc |
+++ b/components/proximity_auth/remote_device_life_cycle_impl.cc |
@@ -95,6 +95,8 @@ scoped_ptr<Authenticator> RemoteDeviceLifeCycleImpl::CreateAuthenticator() { |
void RemoteDeviceLifeCycleImpl::TransitionToState( |
RemoteDeviceLifeCycle::State new_state) { |
+ PA_LOG(INFO) << "Life cycle transition: " << static_cast<int>(state_) |
+ << " => " << static_cast<int>(new_state); |
RemoteDeviceLifeCycle::State old_state = state_; |
state_ = new_state; |
FOR_EACH_OBSERVER(Observer, observers_, |