diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 2 | ||||
-rw-r--r-- | includes/common.inc | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 127e322e0..8a8e889f1 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -64,7 +64,7 @@ define('CACHE_NORMAL', 1); * @see watchdog() * @see watchdog_severity_levels() */ -define('WATCHDOG_EMERG', 0); +define('WATCHDOG_EMERGENCY', 0); /** * Log message severity -- Alert: action must be taken immediately. diff --git a/includes/common.inc b/includes/common.inc index 2c2b7bed2..6a108a289 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -5992,14 +5992,14 @@ function drupal_parse_info_format($data) { */ function watchdog_severity_levels() { return array( - WATCHDOG_EMERG => 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'), ); } |