CodeIgniter内置了一些错误记录功能。
- 使您的 / application / logs 文件夹可写
在 /application/config/config.php中 设置
$config['log_threshold'] = 1;
或使用更大的数字,具体取决于您希望在日志中获取多少详细信息采用
log_message('error', 'Some variable did not contain a value.');
- 要发送电子邮件,您需要扩展核心CI_Exceptions类方法
log_exceptions()
。您可以自己执行此 *** 作或使用它。有关在此处扩展核心的更多信息
参见http://www.preigniter.com/user_guide/general/errors.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)