removed logging

This commit is contained in:
rjawor 2019-05-17 23:54:39 +02:00
parent f95f7591a4
commit d289a24412

View File

@ -47,7 +47,7 @@ std::string ConcordiaServer::handleRequest(std::string & requestString) {
outputString << "Content-type: application/json\r\n\r\n";
try {
rapidjson::Document d;
Logger::logString("concordia request string", requestString);
// Logger::logString("concordia request string", requestString);
bool hasError = d.Parse(requestString.c_str()).HasParseError();
if (hasError) {
@ -83,9 +83,6 @@ std::string ConcordiaServer::handleRequest(std::string & requestString) {
targetSentences.push_back(examplesArray[i][2].GetString());
alignments.push_back(_getInt2DArray(examplesArray[i][3]));
sourceIds.push_back(examplesArray[i][4].GetInt());
Logger::logString("sourceSentence", examplesArray[i][0].GetString());
Logger::logString("lemmatizedSourceSentence", examplesArray[i][1].GetString());
Logger::logString("targetSentence", examplesArray[i][2].GetString());
}
}
_indexController->addSentences(jsonWriter, sourceSentences, lemmatizedSourceSentences, targetSentences, alignments, sourceIds, tmId);