From 1080c01957bd0be876bffaf067e65d709d39c38e Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Tue, 18 May 2010 18:33:30 +0000 Subject: [PATCH] - Patch #696696 by Garrett Albright, qasimzee, confiz: documentation improvements for WATCHDOG_* constants. --- includes/bootstrap.inc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 8520733d584a..dd032cb4cd04 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -51,6 +51,9 @@ /** * 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 @@ /** * 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 @@ /** * 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 @@ /** * 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 @@ /** * 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 @@ /** * 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 @@ /** * 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 @@ /** * 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() */ -- GitLab