| Versionen | |
|---|---|
| drupal6 – drupal7 | watchdog_severity_levels() |
Array of the possible severity levels for log messages.
watchdog
includes/
<?php
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'),
);
}
?>
Kommentare
Kommentar hinzufügen