diff --git a/docs/en/02_Developer_Guides/07_Debugging/01_Error_Handling.md b/docs/en/02_Developer_Guides/07_Debugging/01_Error_Handling.md index 013b7c939..863116696 100644 --- a/docs/en/02_Developer_Guides/07_Debugging/01_Error_Handling.md +++ b/docs/en/02_Developer_Guides/07_Debugging/01_Error_Handling.md @@ -41,10 +41,13 @@ You can indicate a log file relative to the site root. :::php if(!Director::isDev()) { // log errors and warnings - SS_Log::add_writer(new SS_LogFileWriter('/my/logfile/path'), SS_Log::WARN, '<='); - + SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-warnings.log'), SS_Log::WARN, '<='); + // or just errors - SS_Log::add_writer(new SS_LogFileWriter('/my/logfile/path'), SS_Log::ERR); + SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors.log'), SS_Log::ERR); + + // or notices (e.g. for Deprecation Notifications) + SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-notices.log'), SS_Log::NOTICE); }
@@ -62,7 +65,7 @@ You can send both fatal errors and warnings in your code to a specified email-ad :::php if(!Director::isDev()) { // log errors and warnings - SS_Log::add_writer(new SS_LogEmailWriter('admin@domain.com'), SS_Log::WARN, '<='); + SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-warnings.log'), SS_Log::WARN, '<='); // or just errors SS_Log::add_writer(new SS_LogEmailWriter('admin@domain.com'), SS_Log::ERR); @@ -70,4 +73,4 @@ You can send both fatal errors and warnings in your code to a specified email-ad ## API Documentation -* [api:SS_Log] \ No newline at end of file +* [api:SS_Log]