Skip to content

Commit

Permalink
Rewrite output for a more fluent string
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 27, 2022
1 parent 02977f1 commit 7557e57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected function printFinishMessage(float $time_start): void
{
$execution_time = (microtime(true) - $time_start);
$this->info(sprintf(
"\nAll done! Finished in %s seconds (%sms) (Using max %sMB memory)",
"\nAll done! Finished in %s seconds (%sms) with %sMB peak memory usage",
number_format($execution_time, 2),
number_format($execution_time * 1000, 2),
number_format(memory_get_peak_usage() / 1024 / 1024, 2)
Expand Down

0 comments on commit 7557e57

Please sign in to comment.