Index: branches/comu-ver2/data/class/SC_View.php
===================================================================
--- branches/comu-ver2/data/class/SC_View.php	(revision 18596)
+++ branches/comu-ver2/data/class/SC_View.php	(revision 18625)
@@ -68,5 +68,5 @@
 
         if(ADMIN_MODE == '1') {
-            $this->time_start = time();
+            $this->time_start = SC_Utils_Ex::sfMicrotimeFloat();
         }
 
@@ -135,7 +135,7 @@
         $this->_smarty->display($template);
         if(ADMIN_MODE == '1') {
-            $time_end = time();
+            $time_end = SC_Utils_Ex::sfMicrotimeFloat();
             $time = $time_end - $this->time_start;
-            print("処理時間:" . $time . "秒");
+            echo '処理時間: ' . round($time, 3) . 秒;
         }
     }
