? pathauto_bulk_watchdog.patch
Index: pathauto_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_node.inc,v
retrieving revision 1.35
diff -u -p -r1.35 pathauto_node.inc
--- pathauto_node.inc	13 Feb 2008 13:05:45 -0000	1.35
+++ pathauto_node.inc	19 Mar 2008 15:53:56 -0000
@@ -85,7 +85,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.26
diff -u -p -r1.26 pathauto_taxonomy.inc
--- pathauto_taxonomy.inc	29 Feb 2008 20:49:01 -0000	1.26
+++ pathauto_taxonomy.inc	19 Mar 2008 15:53:57 -0000
@@ -137,7 +137,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);
 }
\ No newline at end of file
Index: pathauto_user.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_user.inc,v
retrieving revision 1.22
diff -u -p -r1.22 pathauto_user.inc
--- pathauto_user.inc	31 Dec 2007 19:59:00 -0000	1.22
+++ pathauto_user.inc	19 Mar 2008 15:53:57 -0000
@@ -97,9 +97,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);
 }
 
 
@@ -120,9 +123,11 @@ 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);
 }
 
 /**
@@ -142,7 +147,9 @@ 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);
 }
