about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2001-12-25 19:20:39 +0000
committerAlexander Barton <alex@barton.de>2001-12-25 19:20:39 +0000
commit0dc0308d234ba463f7449d17c88f114ca9f5185b (patch)
tree8849070ec2709353a2de12a059648c76c71d8a74 /src
parentb02f6b423c5bfbed5ffb25ec087de562619052f4 (diff)
downloadngircd-0dc0308d234ba463f7449d17c88f114ca9f5185b.tar.gz
ngircd-0dc0308d234ba463f7449d17c88f114ca9f5185b.zip
- es wird nun die Facility LOG_LOCAL5 zum Loggen verwendet.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/log.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/log.c b/src/ngircd/log.c
index c07d2fd6..799aeaa0 100644
--- a/src/ngircd/log.c
+++ b/src/ngircd/log.c
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: log.c,v 1.5 2001/12/15 00:07:56 alex Exp $
+ * $Id: log.c,v 1.6 2001/12/25 19:20:39 alex Exp $
  *
  * log.c: Logging-Funktionen
  *
  * $Log: log.c,v $
+ * Revision 1.6  2001/12/25 19:20:39  alex
+ * - es wird nun die Facility LOG_LOCAL5 zum Loggen verwendet.
+ *
  * Revision 1.5  2001/12/15 00:07:56  alex
  * - Log-Level der Start- und Stop-Meldungen angehoben.
  *
@@ -49,7 +52,7 @@
 
 GLOBAL VOID Log_Init( VOID )
 {
-	openlog( PACKAGE, LOG_CONS|LOG_PID, LOG_DAEMON );
+	openlog( PACKAGE, LOG_CONS|LOG_PID, LOG_LOCAL5 );
 	Log( LOG_NOTICE, PACKAGE" version "VERSION" started.");
 } /* Log_Init */