drufony/debugbar-module

Drupal 7 的 Debugbar 集成

安装: 11

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

开放问题: 0

类型:drupal-module

dev-master / 7.0.x-dev 2014-12-30 05:25 UTC

This package is auto-updated.

Last update: 2024-09-12 03:30:51 UTC


README

diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 75a1a5d..1cc9d99 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -503,6 +503,7 @@ function timer_stop($name) {
 
   if (isset($timers[$name]['start'])) {
     $stop = microtime(TRUE);
+    $timers[$name]['measures'][] = array($name, $timers[$name]['start'], $stop);
     $diff = round(($stop - $timers[$name]['start']) * 1000, 2);
     if (isset($timers[$name]['time'])) {
       $timers[$name]['time'] += $diff;