From: Dennis Schafroth Date: Tue, 22 May 2012 10:57:58 +0000 (+0000) Subject: Update logging to match logic X-Git-Tag: v1.6.13~1^2~2 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=ab485834bd7708fbdd8e896a7548da22a33fed87;p=pazpar2-moved-to-github.git Update logging to match logic --- diff --git a/src/session.c b/src/session.c index 0e1eea7..74495fc 100644 --- a/src/session.c +++ b/src/session.c @@ -751,12 +751,12 @@ enum pazpar2_error_code session_search(struct session *se, &tval); if (parse_ret == 1 && r == 2) { - session_log(se, YLOG_LOG, "client REUSE %s", client_get_id(cl)); + session_log(se, YLOG_LOG, "client %s REUSE result", client_get_id(cl)); client_reingest(cl); } else if (r) { - session_log(se, YLOG_LOG, "client NEW %s", client_get_id(cl)); + session_log(se, YLOG_LOG, "client %s NEW search", client_get_id(cl)); client_start_search(cl); } no_working++;