mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-31 09:44:44 +00:00
Console log: output timestamp (seconds since start) for resolver, too
This commit is contained in:
parent
027cf22267
commit
9308541e6d
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user