From 43e7813a1001aa84b821f851b29606b6d98a83ac Mon Sep 17 00:00:00 2001 From: Victor Chahuneau Date: Mon, 4 Jun 2012 02:10:08 -0400 Subject: Make decoder REALLY quiet when SILENT=1 --- decoder/decoder.cc | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'decoder/decoder.cc') diff --git a/decoder/decoder.cc b/decoder/decoder.cc index 487c7635..cbb97a0d 100644 --- a/decoder/decoder.cc +++ b/decoder/decoder.cc @@ -122,13 +122,16 @@ inline bool store_conf(po::variables_map const& conf,std::string const& name,V * inline boost::shared_ptr make_ff(string const& ffp,bool verbose_feature_functions,char const* pre="") { string ff, param; SplitCommandAndParam(ffp, &ff, ¶m); - cerr << pre << "feature: " << ff; - if (param.size() > 0) cerr << " (with config parameters '" << param << "')\n"; - else cerr << " (no config parameters)\n"; + if (verbose_feature_functions && !SILENT) + cerr << pre << "feature: " << ff; + if (!SILENT) { + if (param.size() > 0) cerr << " (with config parameters '" << param << "')\n"; + else cerr << " (no config parameters)\n"; + } boost::shared_ptr pf = ff_registry.Create(ff, param); if (!pf) exit(1); int nbyte=pf->NumBytesContext(); - if (verbose_feature_functions) + if (verbose_feature_functions && !SILENT) cerr<<"State is "< make_fsa_ff(string const& ffp,bool else cerr << " (no config parameters)\n"; boost::shared_ptr pf = fsa_ff_registry.Create(ff, param); if (!pf) exit(1); - if (verbose_feature_functions) + if (verbose_feature_functions && !SILENT) cerr<<"State is "<state_bytes()<<" bytes for "<