From ae887cad7a7eaceb0510d89ad1bb74f34934210b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 17 Nov 2011 13:36:02 +0100 Subject: [PATCH] zoom: log Torus record. --- src/torus.cpp | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/torus.cpp b/src/torus.cpp index d6bcd03..2a0a36c 100644 --- a/src/torus.cpp +++ b/src/torus.cpp @@ -61,10 +61,27 @@ xmlDoc *mp::get_searchable(std::string url_template, const std::string &db, ); if (http_response && http_response->code == 200 && http_response->content_buf) + { + yaz_log(YLOG_LOG, "Torus: %s OK", url_template.c_str()); doc = xmlParseMemory(http_response->content_buf, http_response->content_len); + + } else - yaz_log(YLOG_WARN, "Could not fetch %s", url_template.c_str()); + { + yaz_log(YLOG_WARN, "Torus: %s FAIL", url_template.c_str()); + if (http_response) + { + yaz_log(YLOG_LOG, "HTTP code: %d", http_response->code); + } + } + + if (http_response && http_response->content_buf) + { + yaz_log(YLOG_LOG, "HTTP content:\n%.*s", + (int) http_response->content_len, + http_response->content_buf); + } yaz_url_destroy(url_p); return doc; } -- 1.7.10.4