udev: netif_rename - don't log to kmsg

As of 3.17, the kernel will do this on its own, so just do regular log_debug() logging from udev.
This commit is contained in:
Tom Gundersen
2014-09-09 22:45:03 +02:00
parent aedca89268
commit 1187f20655
+1 -1
View File
@@ -762,7 +762,7 @@ static int rename_netif(struct udev_event *event) {
return r;
}
print_kmsg("renamed network interface '%s' to '%s'\n", oldname, name);
log_debug("renamed network interface '%s' to '%s'\n", oldname, name);
return 0;
}