Hi
How do I log a Deprecation Notice?
I have set in my _config.php:
// log errors and warnings
SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-warnings.log'), SS_Log::WARN, '<=');
SS_Log::add_writer(new SS_LogEmailWriter('myemailaddress'), SS_Log::WARN, '<=');
This doesn't log anything.
Any ideas please?
Thanks
Updated:
This works - SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-notices.log'), SS_Log::NOTICE);