Logging severity levels as defined in RFC 3164.

The WATCHDOG_* constant definitions correspond to the logging severity levels defined in RFC 3164, section 4.1.1. PHP supplies predefined LOG_* constants for use in the syslog() function, but their values on Windows builds do not correspond to RFC 3164. The associated PHP bug report was closed with the comment, "And it's also not a bug, as Windows just have less log levels," and "So the behavior you're seeing is perfectly normal."

See also

https://en.wikipedia.org/wiki/Syslog#Severity_level

http://www.faqs.org/rfcs/rfc3164.html

http://bugs.php.net/bug.php?id=18090

http://php.net/manual/function.syslog.php

http://php.net/manual/network.constants.php

watchdog()

watchdog_severity_levels()

File

core/includes/bootstrap.inc, line 54
Functions that need to be loaded on every Backdrop request.

Functions

Name Locationsort ascending Description
backdrop_error_levels core/includes/errors.inc Maps PHP error constants to watchdog severity levels.
watchdog_severity_levels core/includes/common.inc Returns a list of severity levels, as defined in RFC 3164.

Constants

Name Locationsort ascending Description
WATCHDOG_EMERGENCY core/includes/bootstrap.inc Log message severity -- Emergency: system is unusable.
WATCHDOG_ALERT core/includes/bootstrap.inc Log message severity -- Alert: action must be taken immediately.
WATCHDOG_CRITICAL core/includes/bootstrap.inc Log message severity -- Critical conditions.
WATCHDOG_ERROR core/includes/bootstrap.inc Log message severity -- Error conditions.
WATCHDOG_WARNING core/includes/bootstrap.inc Log message severity -- Warning conditions.
WATCHDOG_NOTICE core/includes/bootstrap.inc Log message severity -- Notice: normal but significant conditions.
WATCHDOG_INFO core/includes/bootstrap.inc Log message severity -- Informational messages.
WATCHDOG_DEBUG core/includes/bootstrap.inc Log message severity -- Debug-level messages.
WATCHDOG_DEPRECATED core/includes/bootstrap.inc Log message severity -- Deprecated function/feature notices.