Index: trunk/phase3/includes/profiler/ProfilerSimpleTrace.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | return $diff / 1024; |
62 | 62 | } |
63 | 63 | |
64 | | - function getOutput() { |
| 64 | + function logData() { |
65 | 65 | print "<!-- \n {$this->trace} \n -->"; |
66 | 66 | } |
67 | 67 | } |
Index: trunk/phase3/includes/AutoLoader.php |
— | — | @@ -601,6 +601,7 @@ |
602 | 602 | 'Profiler' => 'includes/profiler/Profiler.php', |
603 | 603 | 'ProfilerSimple' => 'includes/profiler/ProfilerSimple.php', |
604 | 604 | 'ProfilerSimpleText' => 'includes/profiler/ProfilerSimpleText.php', |
| 605 | + 'ProfilerSimpleTrace' => 'includes/profiler/ProfilerSimpleTrace.php', |
605 | 606 | 'ProfilerSimpleUDP' => 'includes/profiler/ProfilerSimpleUDP.php', |
606 | 607 | 'ProfilerStub' => 'includes/profiler/ProfilerStub.php', |
607 | 608 | |