[Logbook] Added Debug info if in development mode

这个提交包含在:
Peter Goodhall 2022-02-19 21:19:13 +00:00
父节点 b94eb1909b
当前提交 95121e2eb3

查看文件

@ -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');