blob: d30a1b451b3e5a2e3b29516fbd030237ec6a4e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Array of section names to display in the Profiler, TRUE to display all of them.
* Built in sections are benchmarks, database, session, post and cookies, custom sections can be used too.
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
$config['show'] = TRUE;
$config['time_decimals'] = 3;
$config['memory_decimals'] = 2;
|