about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/ngircd/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/log.c b/src/ngircd/log.c
index 5a81b5b3..ff811630 100644
--- a/src/ngircd/log.c
+++ b/src/ngircd/log.c
@@ -146,8 +146,8 @@ GLOBAL void
 Log_Exit( void )
 {
 	/* Good Bye! */
-	if( NGIRCd_SignalRestart ) Log( LOG_NOTICE, "%s done (restarting).", PACKAGE_NAME );
-	else Log( LOG_NOTICE, "%s done.", PACKAGE_NAME );
+	Log(LOG_NOTICE, "%s done%s, served %lu connections.", PACKAGE_NAME,
+	    NGIRCd_SignalRestart ? " (restarting)" : "", Conn_CountAccepted());
 
 #ifdef DEBUG
 	if( Error_File[0] )