mirror of
https://github.com/osmarks/ngircd.git
synced 2025-05-04 08:24:06 +00:00
Logging: remove "Activating ..." info message
This commit is contained in:
parent
8e3c56e5b2
commit
3f46e93ccc
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ngIRCd -- The Next Generation IRC Daemon
|
* ngIRCd -- The Next Generation IRC Daemon
|
||||||
* Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
|
* Copyright (c)2001-2012 Alexander Barton (alex@barton.de)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -44,7 +44,6 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
|
|
||||||
static char Init_Txt[127];
|
|
||||||
static bool Is_Daemon;
|
static bool Is_Daemon;
|
||||||
|
|
||||||
|
|
||||||
@ -78,33 +77,6 @@ Log_Init( bool Daemon_Mode )
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
Log(LOG_NOTICE, "%s started.", NGIRCd_Version);
|
Log(LOG_NOTICE, "%s started.", NGIRCd_Version);
|
||||||
|
|
||||||
/* Information about "Operation Mode" */
|
|
||||||
Init_Txt[0] = '\0';
|
|
||||||
#ifdef DEBUG
|
|
||||||
if( NGIRCd_Debug )
|
|
||||||
{
|
|
||||||
strlcpy( Init_Txt, "debug-mode", sizeof Init_Txt );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if( ! Is_Daemon )
|
|
||||||
{
|
|
||||||
if( Init_Txt[0] ) strlcat( Init_Txt, ", ", sizeof Init_Txt );
|
|
||||||
strlcat( Init_Txt, "no-daemon-mode", sizeof Init_Txt );
|
|
||||||
}
|
|
||||||
if( NGIRCd_Passive )
|
|
||||||
{
|
|
||||||
if( Init_Txt[0] ) strlcat( Init_Txt, ", ", sizeof Init_Txt );
|
|
||||||
strlcat( Init_Txt, "passive-mode", sizeof Init_Txt );
|
|
||||||
}
|
|
||||||
#ifdef SNIFFER
|
|
||||||
if( NGIRCd_Sniffer )
|
|
||||||
{
|
|
||||||
if( Init_Txt[0] ) strlcat( Init_Txt, ", ", sizeof Init_Txt );
|
|
||||||
strlcat( Init_Txt, "network sniffer", sizeof Init_Txt );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if( Init_Txt[0] ) Log( LOG_INFO, "Activating: %s.", Init_Txt );
|
|
||||||
} /* Log_Init */
|
} /* Log_Init */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user