diff --git a/src/MeoAssistant/MatchImageAnalyzer.cpp b/src/MeoAssistant/MatchImageAnalyzer.cpp index 47ea171e77..919360dd58 100644 --- a/src/MeoAssistant/MatchImageAnalyzer.cpp +++ b/src/MeoAssistant/MatchImageAnalyzer.cpp @@ -16,7 +16,7 @@ bool asst::MatchImageAnalyzer::analyze() { const cv::Mat templ = m_templ_name.empty() ? m_templ : TemplResource::get_instance().get_templ(m_templ_name); if (templ.empty()) { - Log.error("templ is empty!"); + Log.error("templ is empty!", m_templ_name); return false; } return match_templ(templ); diff --git a/src/MeoAssistant/MultiMatchImageAnalyzer.cpp b/src/MeoAssistant/MultiMatchImageAnalyzer.cpp index 5251a021cc..185d2d78e0 100644 --- a/src/MeoAssistant/MultiMatchImageAnalyzer.cpp +++ b/src/MeoAssistant/MultiMatchImageAnalyzer.cpp @@ -21,7 +21,7 @@ bool asst::MultiMatchImageAnalyzer::analyze() const cv::Mat templ = TemplResource::get_instance().get_templ(m_templ_name); if (templ.empty()) { - Log.error("templ is empty!"); + Log.error("templ is empty!", m_templ_name); return false; }