mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Adding defaults for unhandled event priorities in log formatters.
Unhandled types wouldn't show up in the error format message, and a notice "undefined $errtype" is displayed on these cases.
This commit is contained in:
parent
a101d4edb3
commit
af01d7f024
@ -23,6 +23,9 @@ class SS_LogErrorEmailFormatter implements Zend_Log_Formatter_Interface {
|
|||||||
$errorType = 'Notice';
|
$errorType = 'Notice';
|
||||||
$colour = 'grey';
|
$colour = 'grey';
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
$errorType = $event['priorityName'];
|
||||||
|
$colour = 'grey';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!is_array($event['message'])) {
|
if(!is_array($event['message'])) {
|
||||||
|
@ -26,6 +26,8 @@ class SS_LogErrorFileFormatter implements Zend_Log_Formatter_Interface {
|
|||||||
case 'NOTICE':
|
case 'NOTICE':
|
||||||
$errtype = 'Notice';
|
$errtype = 'Notice';
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
$errtype = $event['priorityName'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$urlSuffix = '';
|
$urlSuffix = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user