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:
Sean Harvey 2014-02-24 15:38:53 +13:00
parent a101d4edb3
commit af01d7f024
2 changed files with 6 additions and 1 deletions

View File

@ -23,6 +23,9 @@ class SS_LogErrorEmailFormatter implements Zend_Log_Formatter_Interface {
$errorType = 'Notice';
$colour = 'grey';
break;
default:
$errorType = $event['priorityName'];
$colour = 'grey';
}
if(!is_array($event['message'])) {

View File

@ -26,6 +26,8 @@ class SS_LogErrorFileFormatter implements Zend_Log_Formatter_Interface {
case 'NOTICE':
$errtype = 'Notice';
break;
default:
$errtype = $event['priorityName'];
}
$urlSuffix = '';