Skip to content

Commit

Permalink
suppress log for futile translation (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
siuze authored Sep 23, 2023
1 parent 5106353 commit c9630fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rime/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ void ConcreteEngine::TranslateSegments(Segmentation* segments) {
if (!translation)
continue;
if (translation->exhausted()) {
LOG(INFO) << translator->name_space() << " made a futile translation.";
DLOG(INFO) << translator->name_space() << " made a futile translation.";
continue;
}
menu->AddTranslation(translation);
Expand Down

0 comments on commit c9630fe

Please sign in to comment.