From b74574fb0d12adaa47b63700fbbd91ab06f5950e Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sat, 3 Oct 2015 15:39:47 +0200 Subject: [PATCH] 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. --- src/devices/wifi/nm-device-wifi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }