repo: ngircd action: commit revision: path_from: revision_from: 140d1aa505dd6a27950e8153e28a967b320104e6: path_to: revision_to:
commit 140d1aa505dd6a27950e8153e28a967b320104e6 Author: Alexander BartonDate: Wed Feb 27 14:47:04 2002 +0000 - Logging bei Timeout von Verbindungen geaendert. diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
--- 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 ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.c,v 1.40 2002/02/27 02:26:23 alex Exp $
+ * $Id: conn.c,v 1.41 2002/02/27 14:47:04 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*
* $Log: conn.c,v $
+ * Revision 1.41 2002/02/27 14:47:04 alex
+ * - Logging bei Timeout von Verbindungen geaendert.
+ *
* Revision 1.40 2002/02/27 02:26:23 alex
* - an Conn_Close() werden zwei weitere Fehlermeldungen zum Forwarden uebergeben.
*
@@ -906,7 +909,7 @@ LOCAL VOID Check_Connections( VOID )
if( My_Connections[i].lastdata < time( NULL ) - Conf_PingTimeout )
{
/* Timeout */
- Log( LOG_INFO, "Connection %d: Timeout.", i );
+ Log( LOG_DEBUG, "Connection %d timed out ...", i );
Conn_Close( i, NULL, "Timeout", TRUE );
}
}
-----END OF PAGE-----