Open Issues Need Help
View All on GitHubAI Summary: The task is to modify the existing request logging CLI application, "Request Sink", to display the protocol (HTTP/HTTPS) of incoming requests. This involves using the `HttpExchange::getProtocol` method (presumably within the application's request handling logic) to retrieve the protocol and then incorporate it into the request log output.
A small cli application for logging requests to see what they look like.
AI Summary: Enhance the existing CLI request logging application to display the length of the request body in bytes. This involves modifying the application's request handling logic to calculate and print the body length alongside other request details.
A small cli application for logging requests to see what they look like.
AI Summary: Enhance the existing CLI application 'request-sink' to allow users to specify a custom HTTP status code for the responses it generates. This involves adding a command-line option or configuration setting to control the response status code, modifying the application's logic to use the specified code, and updating the documentation to reflect the new feature.
A small cli application for logging requests to see what they look like.