summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-10-03 15:39:47 +0200
committerThomas Haller <thaller@redhat.com>2015-10-03 15:39:53 +0200
commitb74574fb0d12adaa47b63700fbbd91ab06f5950e (patch)
tree6f4e2702d2c583277373baabb9c2766737767e41
parentf1aece753d4662b517d8cb1959d1fde9d3d8353f (diff)
downloadNetworkManager-b74574fb0d12adaa47b63700fbbd91ab06f5950e.tar.gz
wifi: align logging AP dumps
There are several places where we log the APs. It looks nicer in the log, if all use the same length prefix.
-rw-r--r--src/devices/wifi/nm-device-wifi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/wifi/nm-device-wifi.c b/src/devices/wifi/nm-device-wifi.c
index 225a477310..7415f7ac1c 100644
--- a/src/devices/wifi/nm-device-wifi.c
+++ b/src/devices/wifi/nm-device-wifi.c
@@ -1455,7 +1455,7 @@ ap_list_dump (gpointer user_data)
priv->scheduled_scan_time);
sorted = get_sorted_ap_list (self);
for (iter = sorted; iter; iter = iter->next)
- nm_ap_dump (NM_AP (iter->data), " ", nm_device_get_iface (NM_DEVICE (self)));
+ nm_ap_dump (NM_AP (iter->data), "dump ", nm_device_get_iface (NM_DEVICE (self)));
g_slist_free (sorted);
return G_SOURCE_REMOVE;
}