blob: 90532f078344c09f2cfdb6ba850e7de80994348c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* @package Profiler
*
* 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.
*/
$config['show'] = TRUE;
$config['time_decimals'] = 3;
$config['memory_decimals'] = 2;
|