Exception Monitoring
CodeIgniter error tracking
helper('inspector'); // You don't need this if you autoload inspector globally
try {
// Your code statements here...
} catch(LogicException $exception) {
// Report an exception intentionally to collect diagnostics data
inspector()->reportException($exception);
}Exception monitoring

Last updated