chiark / gitweb /
network: move configuration to /etc/systemd/network
[elogind.git] / src / udev / udev-builtin-net_link.c
index d7cbe6a0162c35a054060bc45bba12fc60b041cf..f4fb63ec51bef47c4862d48141b9e297ed942b7b 100644 (file)
@@ -37,7 +37,7 @@ static int builtin_net_link(struct udev_device *dev, int argc, char **argv, bool
         r = link_config_get(ctx, dev, &link);
         if (r < 0) {
                 if (r == -ENOENT) {
-                        log_info("No matching link configuration found");
+                        log_debug("No matching link configuration found");
                         return EXIT_SUCCESS;
                 } else {
                         log_error("Could not get link config");
@@ -47,7 +47,7 @@ static int builtin_net_link(struct udev_device *dev, int argc, char **argv, bool
 
         r = link_config_apply(ctx, link, dev);
         if (r < 0) {
-                log_error("Could not apply link config");
+                log_error("Could not apply link config to %s", udev_device_get_sysname(dev));
                 return EXIT_FAILURE;
         }