Commit Diff


commit - 2c962d053dc13e78db80d506191616a58ee99970
commit + 9daa6569cac709d1ddd8e2f904a1728b6e80824a
blob - 4f50660ece4800b15c907d06899f77bba1dbe6f6
blob + 84bb46a5eb351e9c5c1e37561362bd5601f1083c
--- web/http.c
+++ web/http.c
@@ -126,7 +126,8 @@ http_parse(struct client *clt)
 		m = "POST";
 	else
 		m = "unknown";
-	log_debug("< %s %s", m, req->path);
+	log_debug("< %s %s HTTP/%s", m, req->path,
+	    req->version == HTTP_1_1 ? "1.1" : "1.0");
 
 	return 0;
 }