summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-08-11 21:32:14 +0200
committerThomas Haller <thaller@redhat.com>2014-09-24 16:12:45 +0200
commit3744544920173db10a2a08778169fd92e1bff802 (patch)
tree5d85a171f07ad5c335a3d725c05563ecdacfb8b4
parentbda076bb3c768643e965ea5cde529b7cf4b18137 (diff)
downloadNetworkManager-3744544920173db10a2a08778169fd92e1bff802.tar.gz
core: log when emitting RECHECK_ASSUME signal
Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--src/devices/nm-device.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 8eb86d9294..e731fdfce9 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -1993,8 +1993,10 @@ nm_device_emit_recheck_assume (gpointer self)
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE (self);
priv->recheck_assume_id = 0;
- if (!nm_device_get_act_request (self) && (priv->ip4_config || priv->ip6_config))
+ if (!nm_device_get_act_request (self) && (priv->ip4_config || priv->ip6_config)) {
+ _LOGD (LOGD_DEVICE, "emit RECHECK_ASSUME signal");
g_signal_emit (self, signals[RECHECK_ASSUME], 0);
+ }
return G_SOURCE_REMOVE;
}