Issue #1914220 by underq: Standardize capitalization in watchdog: 'debug', 'error', 'alert', etc.
parent
d4be054870
commit
35741dcd3b
|
@ -6327,14 +6327,14 @@ function drupal_parse_info_format($data) {
|
|||
*/
|
||||
function watchdog_severity_levels() {
|
||||
return array(
|
||||
WATCHDOG_EMERGENCY => t('emergency'),
|
||||
WATCHDOG_ALERT => t('alert'),
|
||||
WATCHDOG_CRITICAL => t('critical'),
|
||||
WATCHDOG_ERROR => t('error'),
|
||||
WATCHDOG_WARNING => t('warning'),
|
||||
WATCHDOG_NOTICE => t('notice'),
|
||||
WATCHDOG_INFO => t('info'),
|
||||
WATCHDOG_DEBUG => t('debug'),
|
||||
WATCHDOG_EMERGENCY => t('Emergency'),
|
||||
WATCHDOG_ALERT => t('Alert'),
|
||||
WATCHDOG_CRITICAL => t('Critical'),
|
||||
WATCHDOG_ERROR => t('Error'),
|
||||
WATCHDOG_WARNING => t('Warning'),
|
||||
WATCHDOG_NOTICE => t('Notice'),
|
||||
WATCHDOG_INFO => t('Info'),
|
||||
WATCHDOG_DEBUG => t('Debug'),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue