From: Simon Ruderich Date: Sat, 10 Aug 2013 10:59:20 +0000 (+0200) Subject: Fix log level for proxy authentication failure. X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=9f104f23e70b190d3b45555b12e540d0788e14e5 Fix log level for proxy authentication failure. --- 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; }