Snippets - Little bits of code to make you happy
Get errors e-mailed to you
Tweet24 March 2009 | | | Supports v2.4
If your site is live it means you are probably not getting errors reported in the view, so it's handy to have them emailed to you so you can still debug and also be notified if something is up.
Add this line to your mysite/_config.php file and expect some mail!
SS_Log::add_writer(new SS_LogEmailWriter('me@mydomain.com'), SS_Log::ERR);
This method can also be used to log errors to a file:
SS_Log::add_writer(new SS_LogFileWriter('error_log.txt'), SS_Log::ERR);
Note, in 2.3.x you will need to use a different method:
Debug::send_errors_to("your@email.com");
Comments
RSS feed for comments on this page RSS feed for all comments
No one has commented on this page yet.
Post a comment ...
You cannot post comments until you have logged in. Login Here.