summaryrefslogtreecommitdiff
path: root/decoder/ff_factory.cc
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-23 23:16:46 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-23 23:16:46 +0000
commitc4eac4b98cb147c6949d655e1e137687a4f38690 (patch)
tree98d2c147a1a23f2d75cb4b21a8c8bef66696b81a /decoder/ff_factory.cc
parenta1454f4992b2b64c3fd51cba52abee43fafda85e (diff)
deterministic FF_FSA debug in constructor
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@395 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/ff_factory.cc')
-rw-r--r--decoder/ff_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ff_factory.cc b/decoder/ff_factory.cc
index 5a207ea9..aec82d38 100644
--- a/decoder/ff_factory.cc
+++ b/decoder/ff_factory.cc
@@ -39,7 +39,7 @@ shared_ptr<FeatureFunction> FFRegistry::Create(const string& ffname, const strin
(p.size()==pl || (space=(p[pl]==' ')));
if (debug) {
p.erase(0,debug_pre.size()+space);
- cerr<<"debug enabled for "<<ffname<< " - rest of param='"<<p<<"'\n";
+ cerr<<"debug enabled for "<<ffname<< " - remaining options: '"<<p<<"'\n";
}
res = it->second->Create(p);
res->name=ffname;