Index: uspace/drv/usbhub/usbhub.c
===================================================================
--- uspace/drv/usbhub/usbhub.c	(revision 215b0011eca870a830810090eff081242de617da)
+++ uspace/drv/usbhub/usbhub.c	(revision ce794342c1d880f177a2ce97633d6d28ab07b732)
@@ -132,5 +132,5 @@
 		return opResult;
 	}
-	usb_log_info("setting port count to %d\n",descriptor->ports_count);
+	usb_log_debug("setting port count to %d\n",descriptor->ports_count);
 	hub_info->port_count = descriptor->ports_count;
 	hub_info->attached_devs = (usb_hc_attached_device_t*)
@@ -159,5 +159,5 @@
 	usb_standard_device_descriptor_t *std_descriptor
 	    = &hub_info->usb_device->descriptors.device;
-	usb_log_info("hub has %d configurations\n",
+	usb_log_debug("hub has %d configurations\n",
 	    std_descriptor->configuration_count);
 	if(std_descriptor->configuration_count<1){
@@ -290,5 +290,5 @@
 	//if this hub already uses default address, it cannot request it once more
 	if(hub->is_default_address_used) return;
-	usb_log_info("some connection changed\n");
+	usb_log_debug("some connection changed\n");
 	assert(hub->control_pipe->hc_phone);
 	int opResult = usb_hub_clear_port_feature(hub->control_pipe,
@@ -333,5 +333,5 @@
 
 	int opResult;
-	usb_log_info("finalizing add device\n");
+	usb_log_debug("finalizing add device\n");
 	opResult = usb_hub_clear_port_feature(hub->control_pipe,
 	    port, USB_HUB_FEATURE_C_PORT_RESET);
@@ -365,5 +365,5 @@
 		return;
 	}
-	usb_log_info("setting new address %d\n",new_device_address);
+	usb_log_debug("setting new address %d\n",new_device_address);
 	//opResult = usb_drv_req_set_address(hc, USB_ADDRESS_DEFAULT,
 	//    new_device_address);
@@ -405,7 +405,8 @@
 		return;
 	}
-	usb_log_info("new device address %d, handle %zu\n",
+	usb_log_info("Detected new device on `%s' (port %d), " \
+	    "address %d (handle %llu).\n",
+	    hub->usb_device->ddf_dev->name, (int) port,
 	    new_device_address, child_handle);
-
 }
 
@@ -504,5 +505,5 @@
 	if (usb_port_connect_change(&status)) {
 		if (usb_port_dev_connected(&status)) {
-			usb_log_info("some connection changed\n");
+			usb_log_debug("some connection changed\n");
 			usb_hub_init_add_device(hub, port, usb_port_speed(&status));
 		} else {
@@ -516,5 +517,5 @@
 			usb_hub_over_current(hub,port);
 		}else{
-			usb_log_info("over current condition was auto-resolved on port %d\n",
+			usb_log_debug("over current condition was auto-resolved on port %d\n",
 					port);
 		}
@@ -522,5 +523,5 @@
 	//port reset
 	if (usb_port_reset_completed(&status)) {
-		usb_log_info("port reset complete\n");
+		usb_log_debug("port reset complete\n");
 		if (usb_port_enabled(&status)) {
 			usb_hub_finalize_add_device(hub, port, usb_port_speed(&status));
