From 84aba98c6b20e5363e47249d40e928eec42ccd72 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 1 Sep 2014 15:28:45 +0200 Subject: [PATCH] Don't log timing of show We already log the time elapsed for each HTTP request so this is kind of redundant these days. --- src/session.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/session.c b/src/session.c index 5f8cb7d..e978425 100644 --- a/src/session.c +++ b/src/session.c @@ -57,7 +57,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include -#define USE_TIMING 1 +#define USE_TIMING 0 #if USE_TIMING #include #endif @@ -1282,6 +1282,12 @@ int session_fetch_more(struct session *se) { session_log(se, YLOG_LOG, "%s: no more to fetch", client_get_id(cl)); + session_log(se, YLOG_LOG, "%s: hits=" ODR_INT_PRINTF + " records=%d filtered=%d", + client_get_id(cl), + client_get_hits(cl), + client_get_num_records(cl), + client_get_num_records_filtered(cl)); } } else -- 1.7.10.4