summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decoder/scfg_translator.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/decoder/scfg_translator.cc b/decoder/scfg_translator.cc
index d4bec40d..d978d8b9 100644
--- a/decoder/scfg_translator.cc
+++ b/decoder/scfg_translator.cc
@@ -292,7 +292,6 @@ void SCFGTranslator::ProcessMarkupHintsImpl(const map<string, string>& kv) {
return;
}
//Create sentence specific grammar from specified file name and load grammar into list of grammars
- cerr << "Loading sentence grammar from:" << it->second << endl;
usingSentenceGrammar = true;
TextGrammar* sentGrammar = new TextGrammar(it->second);
sentGrammar->SetMaxSpan(pimpl_->max_span_limit);
@@ -309,7 +308,6 @@ void SCFGTranslator::SentenceCompleteImpl() {
if(usingSentenceGrammar) // Drop the last sentence grammar from the list of grammars
{
- cerr << "Clearing grammar" << endl;
pimpl_->grammars.pop_back();
}
}