From 60c5d95c4584689ec650b97a5adb706a55d7950d Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 1 Nov 2018 18:41:19 +0100 Subject: [PATCH] Put URL in error message --- jcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jcc.c b/jcc.c index 64b35058..ac13215a 100644 --- a/jcc.c +++ b/jcc.c @@ -839,8 +839,8 @@ static void send_crunch_response(const struct client_state *csp, struct http_res { /* There is nothing we can do about it. */ log_error(LOG_LEVEL_ERROR, - "Couldn't deliver the error message through client socket %d: %E", - csp->cfd); + "Couldn't deliver the error message for %s through client socket %d: %E", + http->url, csp->cfd); } /* Clean up and return */ -- 2.39.2