From 8c23da4332219ad86745e2df06898d9ae1583a0b Mon Sep 17 00:00:00 2001 From: yanyiwu Date: Wed, 28 Jan 2015 20:29:38 +0800 Subject: [PATCH] remove debug log in hmm --- src/HMMSegment.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/HMMSegment.hpp b/src/HMMSegment.hpp index 175e405..c832092 100644 --- a/src/HMMSegment.hpp +++ b/src/HMMSegment.hpp @@ -265,7 +265,6 @@ namespace CppJieba } bool _loadModel(const char* const filePath) { - LogDebug("loadModel [%s] start ...", filePath); ifstream ifile(filePath); string line; vector tmp; @@ -329,8 +328,6 @@ namespace CppJieba return false; } - LogDebug("loadModel [%s] end.", filePath); - return true; } bool _getLine(ifstream& ifile, string& line)