diff --git a/lib/View/Text.php b/lib/View/Text.php index 2f6c38ee3..1eeb23d5d 100644 --- a/lib/View/Text.php +++ b/lib/View/Text.php @@ -70,7 +70,7 @@ protected function addDebug(Util\Debug $debug) { echo "database:\t" . Util\Configuration::read('db.driver') . PHP_EOL; echo "time:\t" . $debug->getExecutionTime() . PHP_EOL; - if ($uptime = Util\Debug::getUptime()) echo "uptime:\t" . $uptime*1000; + if ($uptime = Util\Debug::getUptime()) echo "uptime:\t" . $uptime*1000 . PHP_EOL; if ($load = Util\Debug::getLoadAvg()) echo "load:\t" . implode(', ', $load) . PHP_EOL; if ($commit = Util\Debug::getCurrentCommit()) echo "commit-hash:\t" . $commit . PHP_EOL; if ($version = phpversion()) echo "php-version:\t" . $version . PHP_EOL;