Index: uspace/drv/infrastructure/root/root.c
===================================================================
--- uspace/drv/infrastructure/root/root.c	(revision 1d5a5405546f3f0a0cab965cb3a4339c902e5e26)
+++ uspace/drv/infrastructure/root/root.c	(revision 908bb9645ed022f8ccdcdfd80a4b312d622b76e9)
@@ -237,5 +237,5 @@
 	printf(NAME ": HelenOS root device driver\n");
 
-	ddf_log_init(NAME, LVL_ERROR);
+	ddf_log_init(NAME);
 	return ddf_driver_main(&root_driver);
 }
Index: uspace/drv/infrastructure/rootmac/rootmac.c
===================================================================
--- uspace/drv/infrastructure/rootmac/rootmac.c	(revision 1d5a5405546f3f0a0cab965cb3a4339c902e5e26)
+++ uspace/drv/infrastructure/rootmac/rootmac.c	(revision 908bb9645ed022f8ccdcdfd80a4b312d622b76e9)
@@ -179,5 +179,5 @@
 {
 	printf("%s: HelenOS Mac platform driver\n", NAME);
-	ddf_log_init(NAME, LVL_ERROR);
+	ddf_log_init(NAME);
 	rootmac_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops;
 	return ddf_driver_main(&rootmac_driver);
Index: uspace/drv/infrastructure/rootpc/rootpc.c
===================================================================
--- uspace/drv/infrastructure/rootpc/rootpc.c	(revision 1d5a5405546f3f0a0cab965cb3a4339c902e5e26)
+++ uspace/drv/infrastructure/rootpc/rootpc.c	(revision 908bb9645ed022f8ccdcdfd80a4b312d622b76e9)
@@ -195,5 +195,5 @@
 static void root_pc_init(void)
 {
-	ddf_log_init(NAME, LVL_ERROR);
+	ddf_log_init(NAME);
 	rootpc_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops;
 }
Index: uspace/drv/infrastructure/rootvirt/rootvirt.c
===================================================================
--- uspace/drv/infrastructure/rootvirt/rootvirt.c	(revision 1d5a5405546f3f0a0cab965cb3a4339c902e5e26)
+++ uspace/drv/infrastructure/rootvirt/rootvirt.c	(revision 908bb9645ed022f8ccdcdfd80a4b312d622b76e9)
@@ -240,5 +240,5 @@
 	printf(NAME ": HelenOS virtual devices root driver\n");
 
-	ddf_log_init(NAME, LVL_ERROR);
+	ddf_log_init(NAME);
 	return ddf_driver_main(&rootvirt_driver);
 }
