From aac3cdffd94e2b6012a89df8976220abba6773e4 Mon Sep 17 00:00:00 2001 From: prozacx Date: Tue, 20 Sep 2005 01:55:04 +0000 Subject: [PATCH] Commented out some debug prints git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@510 726aef4b-f618-498e-8847-2d620e286838 --- znc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/znc.cpp b/znc.cpp index 34f47657..0666472c 100644 --- a/znc.cpp +++ b/znc.cpp @@ -1050,17 +1050,17 @@ CString CZNC::FindModPath(const CString& sModule) const { sModPath += (sModule.find(".") == CString::npos) ? ".so" : ""; if (!CFile::Exists(sModPath)) { - DEBUG_ONLY(cout << "[" << sModPath << "] Not found..." << endl); + //DEBUG_ONLY(cout << "[" << sModPath << "] Not found..." << endl); sModPath = GetModPath() + "/" + sModule; sModPath += (sModule.find(".") == CString::npos) ? ".so" : ""; if (!CFile::Exists(sModPath)) { - DEBUG_ONLY(cout << "[" << sModPath << "] Not found..." << endl); + //DEBUG_ONLY(cout << "[" << sModPath << "] Not found..." << endl); sModPath = _MODDIR_ + CString("/") + sModule; sModPath += (sModule.find(".") == CString::npos) ? ".so" : ""; if (!CFile::Exists(sModPath)) { - DEBUG_ONLY(cout << "[" << sModPath << "] Not found... giving up!" << endl); + //DEBUG_ONLY(cout << "[" << sModPath << "] Not found... giving up!" << endl); return ""; } }