From: Adam Dickmeiss Date: Thu, 16 Jun 2011 18:16:31 +0000 (+0200) Subject: Remove two yaz_log calls X-Git-Tag: v1.2.7~16 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=1a6ec95e1020bd8e96698612f152a72cfe8f4415;p=metaproxy-moved-to-github.git Remove two yaz_log calls --- diff --git a/src/filter_zoom.cpp b/src/filter_zoom.cpp index d40326d..adada8f 100644 --- a/src/filter_zoom.cpp +++ b/src/filter_zoom.cpp @@ -181,13 +181,9 @@ void yf::Zoom::Backend::get_zoom_error(int *error, const char **addinfo) if (*error >= ZOOM_ERROR_CONNECT) { // turn ZOOM diagnostic into a Bib-1 2: with addinfo=zoom err msg - yaz_log(YLOG_LOG, "msg=%s", msg); *error = YAZ_BIB1_TEMPORARY_SYSTEM_ERROR; if (addinfo) - { - yaz_log(YLOG_LOG, "addinfo=%s", *addinfo); *addinfo = msg; - } } } }