1
0
Fork 0
mirror of https://github.com/Oreolek/debug-toolbar.git synced 2024-06-16 23:00:50 +03:00

oops, clear some old lines

This commit is contained in:
biakaveron 2010-02-02 20:34:43 +03:00
parent 3c7d491f96
commit b7084838ce
2 changed files with 1 additions and 8 deletions

View file

@ -23,14 +23,8 @@ class DebugToolbar
$template->set('queries', $queries['data'])->set('query_count', $queries['count']);
}
// Logs panel
if (Kohana::config('debug_toolbar.panels.logs') === TRUE)
{
$template->set('logs', self::get_logs());
}
// Vars and Config panel
if (Kohana::config('debug_toolbar.panels.vars_and_config') === TRUE)
if (Kohana::config('debug_toolbar.panels.vars') === TRUE)
{
$template->set('configs', self::get_configs());
}

View file

@ -30,7 +30,6 @@ $config['panels'] = array(
'benchmarks' => TRUE,
'database' => TRUE,
'vars' => TRUE,
'logs' => TRUE,
'ajax' => TRUE,
'files' => TRUE,
'modules' => TRUE,