From 4a49e239279172c31e366c001c5098d1dcc70c83 Mon Sep 17 00:00:00 2001 From: Marc Cromme Date: Tue, 16 Jan 2007 09:04:54 +0000 Subject: [PATCH] removed unneeded yaz log messages and yaz.h header inclusion --- src/filter_cql_to_rpn.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/filter_cql_to_rpn.cpp b/src/filter_cql_to_rpn.cpp index 9b3e20b..3844e0d 100644 --- a/src/filter_cql_to_rpn.cpp +++ b/src/filter_cql_to_rpn.cpp @@ -1,4 +1,4 @@ -/* $Id: filter_cql_to_rpn.cpp,v 1.4 2007-01-16 08:49:05 marc Exp $ +/* $Id: filter_cql_to_rpn.cpp,v 1.5 2007-01-16 09:04:54 marc Exp $ Copyright (c) 2005-2006, Index Data. See the LICENSE file for details @@ -12,15 +12,12 @@ #include "filter_cql_to_rpn.hpp" - -#include +#include #include +#include #include -#include #include #include -#include -#include namespace mp = metaproxy_1; @@ -108,14 +105,15 @@ void yf::CQLtoRPN::Impl::configure(const xmlNode *xmlnode) } if (fname.length() == 0) { - throw mp::filter::FilterException("Missing conversion spec for " - "filter cql_rpn"); + throw mp::filter::FilterException("Missing conversion configuration " + "for filter cql_rpn"); } int error = 0; if (!m_cql2rpn.parse_spec_file(fname.c_str(), &error)) { - throw mp::filter::FilterException("Bad or missing CQL to RPN spec " + throw mp::filter::FilterException("Bad or missing " + "CQL to RPN configuration " + fname); } } @@ -141,12 +139,11 @@ void yf::CQLtoRPN::Impl::process(mp::Package &package) &addinfo); if (r == -3) { - yaz_log(YLOG_LOG, "No CQL to RPN table"); Z_APDU *f_apdu = odr.create_searchResponse( apdu_req, YAZ_BIB1_TEMPORARY_SYSTEM_ERROR, - "Missing CQL to RPN spec"); + "Missing CQL to RPN configuration"); package.response() = f_apdu; return; } @@ -154,7 +151,6 @@ void yf::CQLtoRPN::Impl::process(mp::Package &package) { int error_code = yaz_diag_srw_to_bib1(r); - yaz_log(YLOG_LOG, "CQL Conversion error %d", r); Z_APDU *f_apdu = odr.create_searchResponse(apdu_req, error_code, addinfo); package.response() = f_apdu; -- 1.7.10.4