From 24ea6ce17c5e498dd61d19115f7fa01bece7e7df Mon Sep 17 00:00:00 2001 From: MistEO Date: Thu, 29 Sep 2022 22:57:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=86=8D=E6=B7=BB=E5=8A=A0=E4=B8=80?= =?UTF-8?q?=E4=BA=9B=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MeoAssistant/MatchImageAnalyzer.cpp | 2 +- src/MeoAssistant/MultiMatchImageAnalyzer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }