Remove 'ok' from bootup

ZNC previously sent 'ok' on a new line every time a process went alright in CUtils::PrintStatus

No longer is this the case! ZNC now remains silent when everything is going well.
This commit is contained in:
Jos Ahrens
2015-09-25 13:11:33 +02:00
parent d66cb36cc3
commit 2031a82a77
2 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1044,7 +1044,7 @@ bool CZNC::LoadGlobal(CConfig& config, CString& sError) {
bool bModRet = GetModules().LoadModule(sModName, sArgs, CModInfo::GlobalModule, nullptr, nullptr, sModRet);
CUtils::PrintStatus(bModRet, sModRet);
CUtils::PrintStatus(bModRet, bModRet ? "" : sModRet);
if (!bModRet) {
sError = sModRet;
return false;