diff options
-rw-r--r-- | src/core/nm-policy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/nm-policy.c b/src/core/nm-policy.c index b2ccb16478..ba1ba05a78 100644 --- a/src/core/nm-policy.c +++ b/src/core/nm-policy.c @@ -1677,6 +1677,14 @@ schedule_activate_check(NMPolicy *self, NMDevice *device) NMActiveConnection *ac; const CList *tmp_list; + _LOGD(LOGD_DEVICE, + ">>>> >>>> device %s: check autoactivate... (manager-state=%d, device-autoconnect-allowed=%d, " + "find-pending=%d)", + nm_device_get_iface(device), + nm_manager_get_state(priv->manager), + nm_device_autoconnect_allowed(device), + !!find_pending_activation(self, device)); + if (nm_manager_get_state(priv->manager) == NM_STATE_ASLEEP) return; |