I'd like to receive error logs via email. For example, if a Warning-level error message should occur, I'd like to get an email about it.
How can I get that working in CI ?
Thanks,
Ian
|
3
|
I'd like to receive error logs via email. For example, if a Warning-level error message should occur, I'd like to get an email about it. How can I get that working in CI ? Thanks, Ian |
||
|
|
|
|
You could extend the Exception core class to do it. Might have to adjust the reference to CI's email class, not sure if you can instantiate it from a library like this. I don't use CI's email class myself, I've been using the Swift Mailer library. But this should get you on the right path. Make a file MY_Exceptions.php and place it in /application/libraries/
|
|||
|
|
|
Oh, another option is to get a logrotation application that supports emailing digests. Not sure what platform you are on, but you could just have something monitor the error_log file and send you updates, might not be as neat and certainly you would be limited to only information in the error_log. (error_log is Apache, CI has a /logs/ folder in system, and IIS has the Windows Events) |
||
|
|
|
|
I think this might be occur because of using editor provide on hosting server.. |
||
|
|