summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-18 01:54:36 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-18 01:54:36 +0000
commit8905544936b046fd49e1697acd9ff633c7d5cf15 (patch)
tree3a98014d28cc5316ac72b6a15327bcf5a8a166e5 /modules/syslog/syslog.module
parent26dce525a2928967aaa34280e5e36d9a46226d75 (diff)
downloadbrdo-8905544936b046fd49e1697acd9ff633c7d5cf15.tar.gz
brdo-8905544936b046fd49e1697acd9ff633c7d5cf15.tar.bz2
- Patch #881540 by bjaspan: openlog() identity argument and unrelated bug fixes.
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module28
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index 590dd9dae..20f8a2823 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -37,14 +37,14 @@ function syslog_help($path, $arg) {
* Implements hook_form_FORM_ID_alter().
*/
function syslog_form_system_logging_settings_alter(&$form, &$form_state) {
+ $help = module_exists('help') ? ' ' . l(t('More information'), 'admin/help/syslog') . '.' : NULL;
+ $form['syslog_identity'] = array(
+ '#type' => 'textfield',
+ '#title' => t('Syslog identity'),
+ '#default_value' => variable_get('syslog_identity', 'drupal'),
+ '#description' => t('A string that will be prepended to every message logged to Syslog. If you have multiple sites logging to the same Syslog log file, a unique identity per site makes it easy to tell the log entries apart.') . $help,
+ );
if (defined('LOG_LOCAL0')) {
- $help = module_exists('help') ? ' ' . l(t('More information'), 'admin/help/syslog') . '.' : NULL;
- $form['syslog_identity'] = array(
- '#type' => 'textfield',
- '#title' => t('Syslog identity'),
- '#default_value' => variable_get('syslog_identity', 'drupal'),
- '#description' => t('A string that will be prepended to every message logged to Syslog. If you have multiple sites logging to the same Syslog log file, a unique identity per site makes it easy to tell the log entries apart.') . $help,
- );
$form['syslog_facility'] = array(
'#type' => 'select',
'#title' => t('Syslog facility'),
@@ -52,14 +52,14 @@ function syslog_form_system_logging_settings_alter(&$form, &$form_state) {
'#options' => syslog_facility_list(),
'#description' => t('Depending on the system configuration, Syslog and other logging tools use this code to identify or filter messages from within the entire system log.') . $help,
);
- $form['syslog_format'] = array(
- '#type' => 'textarea',
- '#title' => t('Syslog format'),
- '#default_value' => variable_get('syslog_format', '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message'),
- '#description' => t('Specify the format of the syslog entry. Available variables are: <dl><dt><code>!base_url</code></dt><dd>Base URL of the site.</dd><dt><code>!timestamp</code></dt><dd>Unix timestamp of the log entry.</dd><dt><code>!type</code></dt><dd>The category to which this message belongs.</dd><dt><code>!ip</code></dt><dd>IP address of the user triggering the message.</dd><dt><code>!request_uri</code></dt><dd>The requested URI.</dd><dt><code>!referer</code></dt><dd>HTTP Referer if available.</dd><dt><code>!uid</code></dt><dd>User ID.</dd><dt><code>!link</code></dt><dd>A link to associate with the message.</dd><dt><code>!message</code></dt><dd>The message to store in the log.</dd></dl>'),
- );
- $form['actions']['#weight'] = 1;
}
+ $form['syslog_format'] = array(
+ '#type' => 'textarea',
+ '#title' => t('Syslog format'),
+ '#default_value' => variable_get('syslog_format', '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message'),
+ '#description' => t('Specify the format of the syslog entry. Available variables are: <dl><dt><code>!base_url</code></dt><dd>Base URL of the site.</dd><dt><code>!timestamp</code></dt><dd>Unix timestamp of the log entry.</dd><dt><code>!type</code></dt><dd>The category to which this message belongs.</dd><dt><code>!ip</code></dt><dd>IP address of the user triggering the message.</dd><dt><code>!request_uri</code></dt><dd>The requested URI.</dd><dt><code>!referer</code></dt><dd>HTTP Referer if available.</dd><dt><code>!uid</code></dt><dd>User ID.</dd><dt><code>!link</code></dt><dd>A link to associate with the message.</dd><dt><code>!message</code></dt><dd>The message to store in the log.</dd></dl>'),
+ );
+ $form['actions']['#weight'] = 1;
}
/**