[Logbook] Added Debug info if in development mode
这个提交包含在:
父节点
b94eb1909b
当前提交
95121e2eb3
共有 1 个文件被更改,包括 5 次插入 和 0 次删除
|
|
@ -27,6 +27,11 @@ class Logbook extends CI_Controller {
|
|||
redirect('user/login');
|
||||
}
|
||||
|
||||
// If environment is set to development then show the debug toolbar
|
||||
if(ENVIRONMENT == 'development') {
|
||||
$this->output->enable_profiler(TRUE);
|
||||
}
|
||||
|
||||
$this->load->model('logbook_model');
|
||||
|
||||
$this->load->library('pagination');
|
||||
|
|
|
|||
正在加载…
在新工单中引用