Exemplo n.º 1
3
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(/static/ico/mini/page_text.gif) no-repeat;
}
.bu_debug_bar_log_data{
    display: none;
}
.bu_debug_bar_log_time{
    display: none;
}
</style>

<div id='bu_debug_bar_log_block'>
    <?php 
echo buLogger::getLog();
?>
    <a href='javascript:$("#bu_debug_bar_log_block").css("display","none")' class='bu_debug_bar_close'></a>
</div>
<div id='bu_debug_bar_timer_block'>
    <?php 
$statistic = BuStatistic::getTimerStatistic();
$statisticGroups = BuStatistic::getTimerGroups();
$ft = false;
$lt = false;
foreach ($statistic as $k => $v) {
    if (!$ft) {
        $ft = $k;
    }
    $lt = $k;
    ?>
Exemplo n.º 2
0
 public static function log($name = false, $group = false, $data = false)
 {
     buLogger::log($name, $group, $data);
 }