I'd like to filter out PHP and WordPress notices and deprecated lines so I can look only at errors and warnings. I have this in wp-config:
define('WP_DEBUG', TRUE); // false
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
error_reporting(E_ALL^E_NOTICE);
}
Thoughts?
Great plugin. Should be core in my opinion.
http://wordpress.org/extend/plugins/error-log-dashboard-widget/