forked from lonnieezell/codeigniter-forensics
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofiler.php
More file actions
20 lines (18 loc) · 787 Bytes
/
Copy pathprofiler.php
File metadata and controls
20 lines (18 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
//--------------------------------------------------------------------
// Profiler Sections
//--------------------------------------------------------------------
// Choose which sections you want to show up in your profiler bar.
//
$config['benchmarks'] = TRUE;
$config['config'] = TRUE;
$config['controller_info'] = TRUE;
$config['get'] = TRUE;
$config['http_headers'] = TRUE;
$config['memory_usage'] = TRUE;
$config['post'] = TRUE;
$config['queries'] = TRUE;
$config['eloquent'] = FALSE;
$config['uri_string'] = TRUE;
$config['view_data'] = TRUE;
$config['query_toggle_count'] = 50;