diff -ruN hotplug-2004_03_29.orig/etc/hotplug/hotplug.functions hotplug-2004_03_29/etc/hotplug/hotplug.functions
--- hotplug-2004_03_29.orig/etc/hotplug/hotplug.functions	2005-03-19 22:53:00.000000000 +0100
+++ hotplug-2004_03_29/etc/hotplug/hotplug.functions	2005-03-19 22:52:42.000000000 +0100
@@ -153,7 +153,7 @@
 
 	if ! lsmod | grep -qs "^$(echo $MODULE | sed -e '[-_]/[-_]'/g) "; then
 	    if is_blacklisted $MODULE; then
-		debug_mesg "... blacklisted module:  $MODULE"
+		debug_mesg "     $MODULE: blacklisted"
 		continue
 	    fi
 
@@ -162,15 +162,17 @@
 	    # it's not an error if a module doesn't exist or won't load.
 	    if $MODPROBE -n $MODULE >/dev/null 2>&1 &&
 		    ! $MODPROBE $MODULE >/dev/null 2>&1 ; then
-		mesg "... can't load module $MODULE"
+		mesg "     $MODULE: can't be loaded"
 	    else
 		# /etc/modules.conf may have set non-default module
 		# parameters ... handle per-device parameters in apps
 		# (ioctls etc) not in setup scripts or modules.conf
+		mesg "     $MODULE: loaded sucessfully"
 		LOADED=true
 	    fi
 	else
 	    # This module is already loaded
+	    mesg "     $MODULE: already loaded"
 	    LOADED=true
 	fi
 
