added option <DetailTarget> to allow to filter the (not so important) log-messages from articles' downloads (they have now the type <detail> instead of <info>)

This commit is contained in:
Andrey Prygunkov
2008-02-08 18:57:30 +00:00
parent e96a1d6bde
commit e42f7426ee
11 changed files with 75 additions and 25 deletions

View File

@@ -419,6 +419,9 @@ bool RemoteClient::RequestServerLog(int iLines)
case Message::mkInfo:
printf("[INFO] %s\n", szText);
break;
case Message::mkDetail:
printf("[DETAIL] %s\n", szText);
break;
}
pBufPtr += sizeof(SNZBLogResponseEntry) + ntohl(pLogAnswer->m_iTextLen);