We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dfe44a9 + 7557e57 commit d31e612Copy full SHA for d31e612
packages/framework/src/Console/Commands/BuildSiteCommand.php
@@ -106,9 +106,10 @@ protected function printFinishMessage(float $time_start): void
106
{
107
$execution_time = (microtime(true) - $time_start);
108
$this->info(sprintf(
109
- "\nAll done! Finished in %s seconds. (%sms)",
+ "\nAll done! Finished in %s seconds (%sms) with %sMB peak memory usage",
110
number_format($execution_time, 2),
111
- number_format($execution_time * 1000, 2)
+ number_format($execution_time * 1000, 2),
112
+ number_format(memory_get_peak_usage() / 1024 / 1024, 2)
113
));
114
115
$this->info('Congratulations! 🎉 Your static site has been built!');
0 commit comments