エラーレベルを1
in に設定しましたconfig.php
。しかし、問題は、多くのエラーが発生していることですNOT ACTUALLY ERRORS in terms of application logic
。
次のコード例を検討してください
$deleted = @unlink($filename);
$imap_uid = @imap_uid($con,$msgno);
ご覧のとおり、上記の例ではエラーはスローされませんが、エラーが発生した場合は codeigniter がログに記録します。
エラーログを動的に無効にすることはできますか?
私はこのようなものを期待しています
// ....
$this->error_log = 0; // disable error logging
//Perform some operation that which may log an error,even its suppressed
$this->error_log = 1; //enable it again
// ...
ありがとう。