X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Flog.c;h=a47ce92cd81571025a446ecd0f54b8553dcf9020;hp=8b39e602f56b52f879fa80fbf8fb72391e740dd6;hb=bb1d014abad85b6938cf9d3e88e64f4ee6757ede;hpb=ad8c4b8efb4c77c961516db6ed8917a6421e3d56 diff --git a/src/ngircd/log.c b/src/ngircd/log.c index 8b39e602..a47ce92c 100644 --- a/src/ngircd/log.c +++ b/src/ngircd/log.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2019 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -80,6 +80,7 @@ Log_Init(bool Daemon_Mode) openlog(PACKAGE, LOG_CONS|LOG_PID, 0); #endif #endif + Log(LOG_NOTICE, "%s starting ...", NGIRCd_Version); } /* Log_Init */ @@ -96,15 +97,13 @@ Log_ReInit(void) closelog(); openlog(PACKAGE, LOG_CONS|LOG_PID, Conf_SyslogFacility); #endif - Log(LOG_NOTICE, "%s started.", NGIRCd_Version); - Log(LOG_INFO, "Using configuration file \"%s\" ...", NGIRCd_ConfFile); } GLOBAL void Log_Exit( void ) { - Log(LOG_INFO, "%s done%s, served %lu connection%s.", PACKAGE_NAME, + Log(LOG_NOTICE, "%s done%s, served %lu connection%s.", PACKAGE_NAME, NGIRCd_SignalRestart ? " (restarting)" : "", Conn_CountAccepted(), Conn_CountAccepted() == 1 ? "" : "s"); #ifdef SYSLOG