chore: add more logging to the event receiver

This commit is contained in:
Aaron Blankstein
2024-03-07 13:06:26 -06:00
committed by Brice Dobry
parent 3b6b05cb9f
commit aef7918253

View File

@@ -225,7 +225,9 @@ impl EventReceiver for SignerEventReceiver {
if event_receiver.is_stopped() {
return Err(EventError::Terminated);
}
debug!("Request handling");
let request = http_server.recv()?;
debug!("Got request"; "method" => %request.method(), "path" => request.url());
if request.url() == "/status" {
request