Browse Source

added benchmarking information to splash screen.

Taylor Otwell 13 years ago
parent
commit
b4aa39ab83
2 changed files with 12 additions and 6 deletions
  1. 11 0
      application/views/home/index.php
  2. 1 6
      system/benchmark.php

+ 11 - 0
application/views/home/index.php

@@ -61,6 +61,13 @@
 		.wrapper h2:first-of-type {
 			margin-top: 0;
 		}
+
+		.footer {
+			background-color: #eee;
+			text-align: right;
+			font-size: 12px;
+			color: #bbb;
+		}
 	</style>
 </head> 
 <body>
@@ -75,5 +82,9 @@
 
 		<p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
 	</div>
+
+	<div class="wrapper footer">
+		<?php echo System\Benchmark::check('laravel').'ms | '.System\Benchmark::memory(); ?>
+	</div>
 </body> 
 </html>

+ 1 - 6
system/benchmark.php

@@ -28,12 +28,7 @@ class Benchmark {
 	 */
 	public static function check($name)
 	{
-		if (array_key_exists($name, static::$marks))
-		{
-			return number_format((microtime(true) - static::$marks[$name]) * 1000, 2);
-		}
-
-		throw new \Exception("A Benchmark named [$name] has not been started.");
+		return (array_key_exists($name, static::$marks)) ? number_format((microtime(true) - static::$marks[$name]) * 1000, 2) : 0.0;
 	}
 
 	/**