diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-18 18:33:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-18 18:33:30 +0000 |
commit | 1080c01957bd0be876bffaf067e65d709d39c38e (patch) | |
tree | 48351d3c1110185265924d992ea8589a9b19f061 | |
parent | 5628bc2c9ba82570c63d491e1ee8ae7de6494508 (diff) | |
download | brdo-1080c01957bd0be876bffaf067e65d709d39c38e.tar.gz brdo-1080c01957bd0be876bffaf067e65d709d39c38e.tar.bz2 |
- Patch #696696 by Garrett Albright, qasimzee, confiz: documentation improvements for WATCHDOG_* constants.
-rw-r--r-- | includes/bootstrap.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 8520733d5..dd032cb4c 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -51,6 +51,9 @@ define('CACHE_TEMPORARY', -1); /** * Log message severity -- Emergency: system is unusable. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -59,6 +62,9 @@ define('WATCHDOG_EMERGENCY', 0); /** * Log message severity -- Alert: action must be taken immediately. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -67,6 +73,9 @@ define('WATCHDOG_ALERT', 1); /** * Log message severity -- Critical: critical conditions. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -75,6 +84,9 @@ define('WATCHDOG_CRITICAL', 2); /** * Log message severity -- Error: error conditions. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -83,6 +95,9 @@ define('WATCHDOG_ERROR', 3); /** * Log message severity -- Warning: warning conditions. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -91,6 +106,9 @@ define('WATCHDOG_WARNING', 4); /** * Log message severity -- Notice: normal but significant condition. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -99,6 +117,9 @@ define('WATCHDOG_NOTICE', 5); /** * Log message severity -- Informational: informational messages. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ @@ -107,6 +128,9 @@ define('WATCHDOG_INFO', 6); /** * Log message severity -- Debug: debug-level messages. * + * The WATCHDOG_* constant definitions correspond to the logging severity levels + * defined in RFC 3164, section 4.1.1: http://www.faqs.org/rfcs/rfc3164.html + * * @see watchdog() * @see watchdog_severity_levels() */ |