From 4da5ac5bb4cd6bab1a920fba7d7dd00f1d09c6ea Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 17 Dec 2008 10:55:06 +0100 Subject: [PATCH] Use yaz_log for messages about loading of modules. --- src/router_flexml.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/router_flexml.cpp b/src/router_flexml.cpp index 1f5b268..c294a9c 100644 --- a/src/router_flexml.cpp +++ b/src/router_flexml.cpp @@ -25,6 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include +#include #include @@ -116,8 +117,8 @@ void mp::RouterFleXML::Rep::parse_xml_filters(xmlDocPtr doc, if (!m_factory->exist(type_value)) { - std::cout << "about to load " << type_value << ", path=" << - m_dl_path << "\n"; + yaz_log(YLOG_LOG, "Loading %s (dlpath %s)", + type_value.c_str(), m_dl_path.c_str()); m_factory->add_creator_dl(type_value, m_dl_path); } mp::filter::Base* filter_base = m_factory->create(type_value); @@ -208,8 +209,8 @@ void mp::RouterFleXML::Rep::parse_xml_routes(xmlDocPtr doc, { if (!m_factory->exist(type_value)) { - std::cout << "about to load " << type_value << ", path=" << - m_dl_path << "\n"; + yaz_log(YLOG_LOG, "Loading %s (dlpath %s)", + type_value.c_str(), m_dl_path.c_str()); m_factory->add_creator_dl(type_value, m_dl_path); } mp::filter::Base* filter_base = m_factory->create(type_value); -- 1.7.10.4