From 9f104f23e70b190d3b45555b12e540d0788e14e5 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 10 Aug 2013 12:59:20 +0200 Subject: [PATCH] Fix log level for proxy authentication failure. --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 7a6c082..507a18d 100644 --- a/src/connection.c +++ b/src/connection.c @@ -138,7 +138,7 @@ void handle_connection(int client_socket) { send_bad_request(client_fd_write); goto out; } else if (result == -3) { - LOG(DEBUG1, "read_http_request(): proxy authentication failed"); + LOG(WARNING, "read_http_request(): proxy authentication failed"); send_authentication_required(client_fd_write); goto out; } -- 2.43.2