Bug fix in logging.

This commit is contained in:
Ulrich Germann 2017-03-15 18:03:04 +00:00
parent c3591e613c
commit 1de25fbff9

View File

@ -199,7 +199,7 @@ std::shared_ptr<Histories> Search::Process(const God &god, const Sentences& sent
Decode(god, sentences, states, histories, prevHyps);
PostProcess();
LOG(progress, "Search took ", timer.format(3, "%ws"));
LOG(progress, "Search took {}", timer.format(3, "%ws"));
return histories;
}