]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Fix log level for proxy authentication failure.
authorSimon Ruderich <simon@ruderich.org>
Sat, 10 Aug 2013 10:59:20 +0000 (12:59 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 10 Aug 2013 10:59:20 +0000 (12:59 +0200)
src/connection.c

index 7a6c0825a214ea456ae33f332c6da634d86c5771..507a18d1c54ad000578f1f5c06344a5336b57b70 100644 (file)
@@ -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;
     }