7 lines
279 B
PHP
7 lines
279 B
PHP
|
<div id="debug-query-log">
|
||
|
<h3>Stopwatches</h3>
|
||
|
<p class="mb-2">Page execution took <?= number_format((microtime(true) - START_TIME), 10) ?> seconds.</p>
|
||
|
<p>Bootstrap: <?= stopwatch_get('bootstrap') ?> seconds</p>
|
||
|
<p>Router: <?= stopwatch_get('router') ?> seconds</p>
|
||
|
</div>
|