diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-29 03:06:16 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-29 03:06:16 +0000 |
| commit | c0a571400262b736edff2cd2c9fd288dcf00e284 (patch) | |
| tree | 90055f3648c009e96d4658c7ac80c7af001b3878 | |
| parent | b61207742f1746c695838076434caadeed528ca4 (diff) | |
| download | ngircd-c0a571400262b736edff2cd2c9fd288dcf00e284.tar.gz ngircd-c0a571400262b736edff2cd2c9fd288dcf00e284.zip | |
- Loglevel (nochmal) angepasst.
| -rw-r--r-- | src/ngircd/conn.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index ec0aab70..dccdb6a6 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.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: conn.c,v 1.16 2001/12/27 19:32:44 alex Exp $ + * $Id: conn.c,v 1.17 2001/12/29 03:06:16 alex Exp $ * * connect.h: Verwaltung aller Netz-Verbindungen ("connections") * * $Log: conn.c,v $ + * Revision 1.17 2001/12/29 03:06:16 alex + * - Loglevel (nochmal) angepasst. + * * Revision 1.16 2001/12/27 19:32:44 alex * - bei "Null-Requests" wird nichts mehr geloggt. Uberfluessig, da normal. * @@ -665,7 +668,7 @@ LOCAL VOID Check_Connections( VOID ) if( My_Connections[i].lastping < time( NULL ) - Conf_PongTimeout ) { /* Timeout */ - Log( LOG_NOTICE, "Connection %d: Ping timeout.", i ); + Log( LOG_INFO, "Connection %d: Ping timeout.", i ); Conn_Close( i, "Ping timeout" ); } } |