repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 9308541e6df05d141ea51125877239e01ee5a1f5:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 9308541e6df05d141ea51125877239e01ee5a1f5
Author: Alexander Barton 
Date:   Tue Nov 11 22:01:27 2008 +0100

    Console log: output timestamp (seconds since start) for resolver, too

diff --git a/src/ngircd/log.c b/src/ngircd/log.c
index fbe87f0ea2d8112267f7190375b1b8034f2b56f9..
index ..5edbf368a53bfbc87b3b9e4e81c2d766610cd324 100644
--- a/src/ngircd/log.c
+++ b/src/ngircd/log.c
@@ -334,11 +334,11 @@ va_dcl
 	vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
 	va_end( ap );

-	if( ! Is_Daemon )
-	{
+	if (!Is_Daemon) {
 		/* Output to console */
-		fprintf( stdout, "[%d:%d] %s\n", (int)getpid( ), Level, msg );
-		fflush( stdout );
+		fprintf(stdout, "[%d:%d %4ld] %s\n", (int)getpid( ), Level,
+			time(NULL) - NGIRCd_Start, msg);
+		fflush(stdout);
 	}
 #ifdef SYSLOG
 	else syslog( Level, "%s", msg );

-----END OF PAGE-----