rfkill: use log_device_*()
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 22 Oct 2018 04:01:22 +0000 (13:01 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 23 Oct 2018 13:44:07 +0000 (22:44 +0900)
src/rfkill/rfkill.c

index 79bc1cb..b731631 100644 (file)
@@ -7,6 +7,7 @@
 #include "sd-device.h"
 
 #include "alloc-util.h"
+#include "device-util.h"
 #include "escape.h"
 #include "fd-util.h"
 #include "fileio.h"
@@ -73,9 +74,9 @@ static int find_device(
 
         r = sd_device_get_sysattr_value(device, "name", &name);
         if (r < 0)
-                return log_debug_errno(r, "Device has no name, ignoring: %m");
+                return log_device_debug_errno(device, r, "Device has no name, ignoring: %m");
 
-        log_debug("Operating on rfkill device '%s'.", name);
+        log_device_debug(device, "Operating on rfkill device '%s'.", name);
 
         *ret = TAKE_PTR(device);
         return 0;