Skip to content

Commit

Permalink
Remove extra param in log msg.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Feb 5, 2019
1 parent 15950ff commit 0af6535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/batch.inc
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ function _drush_batch_worker() {

// If we are in progressive mode, break processing after 1 second.
if (drush_memory_limit() > 0 && (memory_get_usage() * 2) >= drush_memory_limit()) {
Drush::logger()->notice(dt("Batch process has consumed in excess of 50% of available memory. Starting new thread"), LogLevel::BATCH);
Drush::logger()->notice(dt("Batch process has consumed in excess of 50% of available memory. Starting new thread"));
// Record elapsed wall clock time.
$current_set['elapsed'] = round((microtime(TRUE) - $current_set['start']) * 1000, 2);
break;
Expand Down

0 comments on commit 0af6535

Please sign in to comment.