1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 11:33:12 +02:00

Give more verbose messages on startup

This commit is contained in:
Adam
2011-10-09 02:52:13 -04:00
parent af273e3da5
commit 9f850334a1
13 changed files with 53 additions and 58 deletions
+4 -1
View File
@@ -147,7 +147,10 @@ Log::~Log()
else if (nofork && this->Type <= LOG_TERMINAL)
std::cout << GetTimeStamp() << " " << this->BuildPrefix() << this->buf.str() << std::endl;
else if (this->Type == LOG_TERMINAL)
std::cout << this->BuildPrefix() << this->buf.str() << std::endl;
{
if (AtTerm())
std::cout << this->BuildPrefix() << this->buf.str() << std::endl;
}
for (unsigned i = 0; Config && i < Config->LogInfos.size(); ++i)
{
LogInfo *l = Config->LogInfos[i];