? drush-verbose-log.patch
? commands/core/.core.drush.inc.swp
? commands/pm/package_handler/.cvs.inc.swp
? commands/pm/package_handler/.wget.inc.swp
? commands/pm/version_control/.svn.inc.swp
? includes/.drush.inc.swp
Index: commands/core/core.drush.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/core/core.drush.inc,v
retrieving revision 1.19
diff -u -p -r1.19 core.drush.inc
--- commands/core/core.drush.inc	17 Apr 2009 18:18:15 -0000	1.19
+++ commands/core/core.drush.inc	18 Apr 2009 11:46:30 -0000
@@ -339,7 +339,7 @@ function core_sync($source, $destination
 
   $options = '-az';
   $exec = "rsync -e ssh $options --exclude \"*.svn*\" $source $destination";
-  if (drush_get_context('DRUSH_VERBOSE')) {
+  if (drush_get_context('drush_log')) {
     // the drush_op() will be verbose about the command that gets executed.
     $options .= 'v';
   }
@@ -386,7 +386,7 @@ function core_watchdog_show($type = NULL
     return drush_set_error('CORE_WATCHDOG_SHOW_NONE', 'No log messages available.');
   }
   else {
-    drush_verbose(dt('Last !count watchdog log messages:', array('!count' => $limit)));
+    drush_log(dt('Last !count watchdog log messages:', array('!count' => $limit)));
 
     array_unshift($rows, array(dt('Date'), dt('Severity'), dt('Type'), dt('Message'), dt('User')));
     drush_print_table($rows, 2, TRUE);
Index: commands/pm/package_handler/cvs.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/pm/package_handler/cvs.inc,v
retrieving revision 1.2
diff -u -p -r1.2 cvs.inc
--- commands/pm/package_handler/cvs.inc	14 Apr 2009 02:46:19 -0000	1.2
+++ commands/pm/package_handler/cvs.inc	18 Apr 2009 11:46:30 -0000
@@ -15,7 +15,7 @@
 function package_handler_install_project($project, $info, $path = '.') {
   drush_op('chdir', $path);
 
-  drush_verbose("Downloading project $project ...");
+  drush_log("Downloading project $project ...");
 
   $cvsparams = drush_get_option('cvsparams');
 
@@ -23,7 +23,7 @@ function package_handler_install_project
   drush_pm_cvs_checkout($project, $info, $cvsparams);
 
   if (is_dir($path . $project) && !drush_get_context('DRUSH_SIMULATE')) {
-    drush_verbose("Checking out " . $project . " was successful.");
+    drush_log("Checking out " . $project . " was successful.");
     return TRUE;
   }
   else {
@@ -42,7 +42,7 @@ function package_handler_install_project
 function package_handler_update_project($project, $info, $path = '.') {
   drush_op('chdir', $path);
 
-  drush_verbose("Updating project $project ...");
+  drush_log("Updating project $project ...");
 
   $cvsmethod = drush_get_option('cvsmethod');
   if (empty($cvsmethod) && file_exists($project. '/.svn')) {
@@ -54,8 +54,8 @@ function package_handler_update_project(
 
   $cvsparams = drush_get_option('cvsparams');
 
-  drush_verbose($cvsmethod);
-  drush_verbose(strpos(strtolower($cvsmethod), 'up'));
+  drush_log($cvsmethod);
+  drush_log(strpos(strtolower($cvsmethod), 'up'));
   if (substr($cvsmethod, 0, 2) == 'up') {
     // Update the working copy.
     drush_op('chdir', $project);
@@ -70,7 +70,7 @@ function package_handler_update_project(
   }
 
   if (is_dir($path . $project) && !drush_get_context('DRUSH_SIMULATE')) {
-    drush_verbose("Updating out " . $project . " was successful.");
+    drush_log("Updating out " . $project . " was successful.");
     return TRUE;
   }
   else {
Index: commands/pm/package_handler/wget.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/pm/package_handler/wget.inc,v
retrieving revision 1.2
diff -u -p -r1.2 wget.inc
--- commands/pm/package_handler/wget.inc	14 Apr 2009 02:46:19 -0000	1.2
+++ commands/pm/package_handler/wget.inc	18 Apr 2009 11:46:30 -0000
@@ -13,7 +13,7 @@
  * @param $path The path to install the module to.
  */
 function package_handler_install_project($project, $info, $path = '.') {
-  drush_verbose("Downloading project $project ...");
+  drush_log("Downloading project $project ...");
 
   // Get the filename...
   $filename = explode('/', $info['download_link']);
@@ -26,7 +26,7 @@ function package_handler_install_project
   }
 
   if (file_exists($filename) || drush_get_context('DRUSH_SIMULATE')) {
-    drush_verbose("Downloading " . $filename . " was successful.");
+    drush_log("Downloading " . $filename . " was successful.");
   }
   else {
     return drush_set_error('DRUSH_PM_DOWNLOAD_FAILED', "Unable to download $filename to $path from ". $info['download_link']);
@@ -38,7 +38,7 @@ function package_handler_install_project
     return drush_set_error('DRUSH_PM_FILE_CORRUPT', "File $filename is corrupt (wrong md5 checksum).");
   }
   else {
-    drush_verbose("Md5 checksum of $filename verified.");
+    drush_log("Md5 checksum of $filename verified.");
   }
 
   // Decompress
Index: commands/pm/version_control/svn.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/pm/version_control/svn.inc,v
retrieving revision 1.2
diff -u -p -r1.2 svn.inc
--- commands/pm/version_control/svn.inc	14 Apr 2009 02:46:20 -0000	1.2
+++ commands/pm/version_control/svn.inc	18 Apr 2009 11:46:30 -0000
@@ -11,7 +11,7 @@
 function version_control_skip_backup($source) {
   if (file_exists($source. '/.svn')) {
     // Skip backup since we need all .svn  directories. Assuming admin can use svn revert if new project is bad.
-    drush_verbose(dt('Backup skipped because .svn directory was detected. Use Subversion to revert if needed.'));
+    drush_log(dt('Backup skipped because .svn directory was detected. Use Subversion to revert if needed.'));
     return TRUE;
   }
 }
