Index: pathauto_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_node.inc,v
retrieving revision 1.45
diff -u -p -r1.45 pathauto_node.inc
--- pathauto_node.inc	28 May 2008 16:04:35 -0000	1.45
+++ pathauto_node.inc	31 May 2008 15:51:07 -0000
@@ -101,7 +101,10 @@ function node_pathauto_bulkupdate() {
     }
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count, 
     'Bulk generation of nodes completed, one alias generated.',
-    'Bulk generation of nodes completed, @count aliases generated.'));
+    'Bulk generation of nodes completed, @count aliases generated.');
+ 
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
Index: pathauto_taxonomy.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_taxonomy.inc,v
retrieving revision 1.38
diff -u -p -r1.38 pathauto_taxonomy.inc
--- pathauto_taxonomy.inc	31 May 2008 07:03:06 -0000	1.38
+++ pathauto_taxonomy.inc	31 May 2008 15:51:07 -0000
@@ -91,9 +91,12 @@ function taxonomy_pathauto_bulkupdate() 
     $count += _taxonomy_pathauto_alias($category, 'bulkupdate');
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count, 
     'Bulk generation of terms completed, one alias generated.',
-    'Bulk generation of terms completed, @count aliases generated.'));
+    'Bulk generation of terms completed, @count aliases generated.');
+
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
 
 /**
@@ -167,7 +170,10 @@ function forum_pathauto_bulkupdate() {
     $count = _taxonomy_pathauto_alias($category, 'bulkupdate') + $count;
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count, 
     'Bulk update of forums and forum containers completed, one alias generated.',
-    'Bulk update of forums and forum containers completed, @count aliases generated.'));
+    'Bulk update of forums and forum containers completed, @count aliases generated.');
+
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
Index: pathauto_user.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_user.inc,v
retrieving revision 1.28
diff -u -p -r1.28 pathauto_user.inc
--- pathauto_user.inc	28 May 2008 16:04:35 -0000	1.28
+++ pathauto_user.inc	31 May 2008 15:51:07 -0000
@@ -104,9 +104,12 @@ function user_pathauto_bulkupdate() {
     }
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count,
     'Bulk generation of users completed, one alias generated.',
-    'Bulk generation of users completed, @count aliases generated.'));
+    'Bulk generation of users completed, @count aliases generated.');
+
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
 
 /**
@@ -126,9 +129,12 @@ function blog_pathauto_bulkupdate() {
     }
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count,
     'Bulk generation of user blogs completed, one alias generated.',
-    'Bulk generation of user blogs completed, @count aliases generated.'));
+    'Bulk generation of user blogs completed, @count aliases generated.');
+
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
 
 /**
@@ -150,7 +156,10 @@ function tracker_pathauto_bulkupdate() {
     }
   }
 
-  drupal_set_message(format_plural($count,
+  $update_msg = format_plural($count,
     'Bulk generation of user tracker pages completed, one alias generated.',
-    'Bulk generation of user tracker pages completed, @count aliases generated.'));
+    'Bulk generation of user tracker pages completed, @count aliases generated.');
+
+  drupal_set_message($update_msg);
+  watchdog('pathauto', $update_msg);
 }
