Remove the spamminess of --debug a little

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1836 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2010-03-16 09:53:58 +00:00
parent 3e49639cc9
commit fffa0f7d36
3 changed files with 2 additions and 11 deletions
+1 -4
View File
@@ -115,13 +115,11 @@ CString CTemplate::ExpandFile(const CString& sFilename, bool bFromInc) {
if (CFile::Exists(sFilePath)) {
if (sRoot.empty() || sFilePath.Left(sRoot.length()) == sRoot) {
DEBUG("\t\tFound [" + sFilePath + "]\n");
DEBUG(" Found [" + sFilePath + "]");
return sFilePath;
} else {
DEBUG("\t\tOutside of root [" + sFilePath + "] !~ [" + sRoot + "]");
}
} else {
DEBUG("\t\tNo such file [" + sFilePath + "]");
}
}
@@ -253,7 +251,6 @@ bool CTemplate::PrintString(CString& sRet) {
}
bool CTemplate::Print(ostream& oOut) {
DEBUG("== Print(o) m_sFileName = [" + m_sFileName + "]");
return Print(m_sFileName, oOut);
}