Index: uspace/drv/ehci-hcd/main.c
===================================================================
--- uspace/drv/ehci-hcd/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/ehci-hcd/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -119,5 +119,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	return ddf_driver_main(&ehci_driver);
 }
Index: uspace/drv/ohci/main.c
===================================================================
--- uspace/drv/ohci/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/ohci/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -199,5 +199,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	sleep(5);
 	return ddf_driver_main(&ohci_driver);
Index: uspace/drv/uhci-hcd/main.c
===================================================================
--- uspace/drv/uhci-hcd/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/uhci-hcd/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -90,5 +90,5 @@
 {
 	sleep(3); /* TODO: remove in final version */
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 
 	return ddf_driver_main(&uhci_driver);
Index: uspace/drv/uhci-rhd/main.c
===================================================================
--- uspace/drv/uhci-rhd/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/uhci-rhd/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -129,5 +129,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	return ddf_driver_main(&uhci_rh_driver);
 }
Index: uspace/drv/usbflbk/main.c
===================================================================
--- uspace/drv/usbflbk/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/usbflbk/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -86,5 +86,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 
 	return usb_driver_main(&usbfallback_driver);
Index: uspace/drv/usbhid/main.c
===================================================================
--- uspace/drv/usbhid/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/usbhid/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -89,5 +89,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	return ddf_driver_main(&kbd_driver);
 }
Index: uspace/drv/usbhub/main.c
===================================================================
--- uspace/drv/usbhub/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/usbhub/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -76,5 +76,5 @@
 	printf(NAME ": HelenOS USB hub driver.\n");
 
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	
 	return usb_driver_main(&usb_hub_driver);
Index: uspace/drv/usbmid/main.c
===================================================================
--- uspace/drv/usbmid/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/usbmid/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -106,5 +106,5 @@
 	printf(NAME ": USB multi interface device driver.\n");
 
-	usb_log_enable(USB_LOG_LEVEL_INFO, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 	return ddf_driver_main(&mid_driver);
 }
Index: uspace/drv/usbmouse/main.c
===================================================================
--- uspace/drv/usbmouse/main.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/usbmouse/main.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -90,5 +90,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 
 	return usb_driver_main(&mouse_driver);
Index: uspace/drv/vhc/hcd.c
===================================================================
--- uspace/drv/vhc/hcd.c	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/drv/vhc/hcd.c	(revision 215b0011eca870a830810090eff081242de617da)
@@ -122,5 +122,5 @@
 	//sleep(5);
 
-	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
 
 	printf(NAME ": virtual USB host controller driver.\n");
Index: uspace/lib/usb/include/usb/debug.h
===================================================================
--- uspace/lib/usb/include/usb/debug.h	(revision 625f1ba71e48295282f418dd193b1f004be91e13)
+++ uspace/lib/usb/include/usb/debug.h	(revision 215b0011eca870a830810090eff081242de617da)
@@ -79,4 +79,7 @@
 } usb_log_level_t;
 
+/** Default log level. */
+#define USB_LOG_LEVEL_DEFAULT USB_LOG_LEVEL_DEBUG
+
 
 void usb_log_enable(usb_log_level_t, const char *);
