remove debug log in hmm

This commit is contained in:
yanyiwu 2015-01-28 20:29:38 +08:00
parent 2488738b55
commit 8c23da4332

View File

@ -265,7 +265,6 @@ namespace CppJieba
}
bool _loadModel(const char* const filePath)
{
LogDebug("loadModel [%s] start ...", filePath);
ifstream ifile(filePath);
string line;
vector<string> tmp;
@ -329,8 +328,6 @@ namespace CppJieba
return false;
}
LogDebug("loadModel [%s] end.", filePath);
return true;
}
bool _getLine(ifstream& ifile, string& line)