summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-11-07 14:04:06 +0000
committerDries Buytaert <dries@buytaert.net>2009-11-07 14:04:06 +0000
commit74722b8a1467740d0fafaf431b6a326cfbe0d9eb (patch)
tree4779f8cca03e24084a58afc2e1f9bdeb739a9c40 /modules/syslog/syslog.module
parent4a1059fa1b0fae3f0d996a33613cebf40097d3f9 (diff)
downloadbrdo-74722b8a1467740d0fafaf431b6a326cfbe0d9eb.tar.gz
brdo-74722b8a1467740d0fafaf431b6a326cfbe0d9eb.tar.bz2
- Patch #569814 by cweagans: fixed link to syslog.conf manual page in syslog_help().
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index e4aa298f9..df4914b28 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -21,7 +21,7 @@ function syslog_help($path, $arg) {
case 'admin/help#syslog':
$output = '<p>' . t("Syslog logs events by sending messages to the logging facility of your web server's operating system. Syslog is an operating system administrative logging tool, and provides valuable information for use in system management and security auditing. Most suited to medium and large sites, syslog provides filtering tools that allow messages to be routed by type and severity.") . '</p>';
$output .= '<h2>' . t('UNIX, Linux & Mac OS X') . '</h2>';
- $output .= '<p>' . t('On UNIX, Linux and Mac OS X, the file /etc/syslog.conf defines this routing configuration. Messages can be flagged with the codes <code>LOG_LOCAL0</code> through <code>LOG_LOCAL7</code>. For information on syslog facilities, severity levels, and how to set up <code>syslog.conf</code>, see the <a href="@syslog_conf"><code>syslog.conf</code> manual page</a>.', array('@syslog_conf' => url('http://www.rt.com/man/syslog.5.html'))) . '</p>';
+ $output .= '<p>' . t('On UNIX, Linux and Mac OS X, the file /etc/syslog.conf defines this routing configuration. Messages can be flagged with the codes <code>LOG_LOCAL0</code> through <code>LOG_LOCAL7</code>. For information on syslog facilities, severity levels, and how to set up <code>syslog.conf</code>, see the <code>syslog.conf</code> manual page</a>.') . '</p>';
$output .= '<h2>' . t('Microsoft Windows') . '</h2>';
$output .= '<p>' . t('On Microsoft Windows messages are always sent to the Event Log using the code <code>LOG_USER</code>.') . '</p>';
$output .= '<p>' . t('For more information, see the <a href="@syslog">online handbook</a> and and PHP\'s <a href="@php_openlog">openlog</a> and <a href="@php_syslog">syslog</a> functions.', array('@syslog' => 'http://drupal.org/handbook/modules/syslog', '@php_openlog' => url('http://www.php.net/manual/function.openlog.php'), '@php_syslog' => url('http://www.php.net/manual/function.syslog.php'))) . '</p>';