device: remove logging for emitting RECHECK_ASSUME signal

The device's RECHECK_ASSUME signal has only NMManager as subscriber
and it immediately calls recheck_assume_connection().

With the previous commit, recheck_assume_connection() always logs
a debug message, so we don't need this duplicate message anymore.

(cherry picked from commit cc47a6a8b2)
This commit is contained in:
Thomas Haller 2017-06-07 13:44:07 +02:00
parent 7e2d64a8b2
commit c254277f40

View file

@ -4392,10 +4392,9 @@ nm_device_emit_recheck_assume (gpointer user_data)
priv = NM_DEVICE_GET_PRIVATE (self);
priv->recheck_assume_id = 0;
if (!nm_device_get_act_request (self)) {
_LOGD (LOGD_DEVICE, "emit RECHECK_ASSUME signal");
if (!nm_device_get_act_request (self))
g_signal_emit (self, signals[RECHECK_ASSUME], 0);
}
return G_SOURCE_REMOVE;
}