Welcome Guest, Not a member yet? Register   Sign In
Disabling Logging on Controller Level
#2

[eluser]Rokkitt[/eluser]
Have you tried the following in a controller

Code:
$this->config->set_item('log_threshold', 'level');

If you only want to log your self you could open up config/config.php

Code:
if ($_SERVER['REMOTE_ADDR'] == 'your IP') {
  $config['log_threshold'] = 4;
} else {
  $config['log_threshold'] = 0;
}


Messages In This Thread
Disabling Logging on Controller Level - by El Forum - 06-06-2013, 09:20 PM
Disabling Logging on Controller Level - by El Forum - 06-07-2013, 07:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB