Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Matusov <ematusov@ebay.com>2015-11-19 14:42:07 +0300
committerEvgeny Matusov <ematusov@ebay.com>2015-11-19 14:42:07 +0300
commitf346dcd37fbaf2381c30d1ec58da7ea9a7c21842 (patch)
tree71e4359f04f044b1ed7819387e760b949d048df1 /moses/server
parentaa7ef1738b506ddb57f2205c4774352dc9b50ea6 (diff)
another fix to debug output for moses server
Diffstat (limited to 'moses/server')
-rw-r--r--moses/server/TranslationRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/server/TranslationRequest.cpp b/moses/server/TranslationRequest.cpp
index d6a70ecc6..fa9c9c636 100644
--- a/moses/server/TranslationRequest.cpp
+++ b/moses/server/TranslationRequest.cpp
@@ -370,7 +370,7 @@ pack_hypothesis(const Moses::Manager& manager, vector<Hypothesis const* > const&
BOOST_REVERSE_FOREACH(Hypothesis const* e, edges)
manager.OutputSurface(target, *e, StaticData::Instance().GetOutputFactorOrder(),
options().output.ReportSegmentation, m_options.output.ReportAllFactors);
- XVERBOSE(1, "BEST TRANLSLATION:" << *(manager.GetBestHypothesis()) << std::endl);
+ XVERBOSE(1, "BEST TRANSLATION: " << *(manager.GetBestHypothesis()) << std::endl);
// XVERBOSE(1,"SERVER TRANSLATION: " << target.str() << std::endl);
dest[key] = xmlrpc_c::value_string(target.str());