]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- Versionsstring bei Programmstart verbessert.
authorAlexander Barton <alex@barton.de>
Tue, 25 Dec 2001 23:13:00 +0000 (23:13 +0000)
committerAlexander Barton <alex@barton.de>
Tue, 25 Dec 2001 23:13:00 +0000 (23:13 +0000)
src/ngircd/log.c

index 7fb9ac150a7fca6322ad7dab4166a17f898b0805..266b95393ae7dd771e5a61fc1a35b3e29f5eeff1 100644 (file)
@@ -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.
  *
  * 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.7 2001/12/25 22:04:26 alex Exp $
+ * $Id: log.c,v 1.8 2001/12/25 23:13:00 alex Exp $
  *
  * log.c: Logging-Funktionen
  *
  * $Log: log.c,v $
  *
  * log.c: Logging-Funktionen
  *
  * $Log: log.c,v $
+ * Revision 1.8  2001/12/25 23:13:00  alex
+ * - Versionsstring bei Programmstart verbessert.
+ *
  * Revision 1.7  2001/12/25 22:04:26  alex
  * - Aenderungen an den Debug- und Logging-Funktionen.
  *
  * Revision 1.7  2001/12/25 22:04:26  alex
  * - Aenderungen an den Debug- und Logging-Funktionen.
  *
 
 GLOBAL VOID Log_Init( VOID )
 {
 
 GLOBAL VOID Log_Init( VOID )
 {
+       CHAR txt[64];
+
+       strcpy( txt, "" );
+
+#ifdef DEBUG
+       if( txt[0] ) strcat( txt, "+" );
+       else strcat( txt, "-" );
+       strcat( txt, "DEBUG" );
+#endif
+#ifdef SNIFFER
+       if( txt[0] ) strcat( txt, "+" );
+       else strcat( txt, "-" );
+       strcat( txt, "SNIFFER" );
+#endif
+
        openlog( PACKAGE, LOG_CONS|LOG_PID, LOG_LOCAL5 );
        openlog( PACKAGE, LOG_CONS|LOG_PID, LOG_LOCAL5 );
-       Log( LOG_NOTICE, PACKAGE" version "VERSION" started.");
+       Log( LOG_NOTICE, PACKAGE" version "VERSION"%s started.", txt );
 } /* Log_Init */
 
 
 } /* Log_Init */