Like this.

Comments

chx’s picture

StatusFileSize
new1.45 KB

Removed a leftover $printed variable.

moshe weitzman’s picture

At least the last summary line should use drush_log() with a type of 'ok'. That works better when run on remote sites. A bit more programmable. Not a big deal.

chx’s picture

StatusFileSize
new1.45 KB

Certainly.

drewish’s picture

You can swap:

+        drush_print('  ' . $message['type'] .': '. $message['message']);

for

+        drush_print($message['type'] .': '. $message['message'], 2);

the 2nd parameter is indent level.

dawehner’s picture

Version: 6.x-3.x-dev » 7.x-3.x-dev
Status: Needs review » Fixed

Commited with this tiny change to 6.x-3.x and 7.x-3.x

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.