From 804b63646ff1b367e6c758ea19354a24b8ced17e Mon Sep 17 00:00:00 2001 From: zdenop Date: Sun, 8 Jan 2023 18:30:31 +0100 Subject: [PATCH] show out filename on successful created of traineddata (combine_lang_model) --- src/training/unicharset/lang_model_helpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/training/unicharset/lang_model_helpers.cpp b/src/training/unicharset/lang_model_helpers.cpp index 92e8a50bb3..9ee36ba2c7 100644 --- a/src/training/unicharset/lang_model_helpers.cpp +++ b/src/training/unicharset/lang_model_helpers.cpp @@ -239,6 +239,7 @@ int CombineLangModel(const UNICHARSET &unicharset, const std::string &script_dir tprintf("Error writing output traineddata file!!\n"); return EXIT_FAILURE; } + tprintf("Created %s/%s/%s.traineddata", output_dir, lang, lang); return EXIT_SUCCESS; }