From 0870d3aa7461bba2ba9053a5e5797190370d2b97 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Fri, 7 Aug 2009 11:30:14 +0000
Subject: [PATCH] config: Remove double entries for \logging.processname'.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1639 44740490-163a-0410-bde0-09ae8108e29a
---
 config-templates/config.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/config-templates/config.php b/config-templates/config.php
index 2efbccd8f..01a57d0a0 100644
--- a/config-templates/config.php
+++ b/config-templates/config.php
@@ -90,7 +90,6 @@ $config = array (
 	 */
 	'logging.level'         => LOG_NOTICE,
 	'logging.handler'       => 'syslog',
-	'logging.processname'   => 'simpleSAMLphp',
 
 	/*
 	 * Choose which facility should be used when logging with syslog.
@@ -105,10 +104,15 @@ $config = array (
 	 */
 	'logging.facility' => defined('LOG_LOCAL5') ? constant('LOG_LOCAL5') : LOG_USER,
 
+	/*
+	 * The process name that should be used when logging to syslog.
+	 * The value is also written out by the other logging handlers.
+	 */
+	'logging.processname' => 'simplesamlphp',
+
 	/* Logging: file - Logfilename in the loggingdir from above.
 	 */
 	'logging.logfile'		=> 'simplesamlphp.log',
-	'logging.processname'	=> 'simplesamlphp',
 	
 	
 
-- 
GitLab