Tweak a log message for mock-el (#8599)

```bash
$ lcli mock-el ....
...
...
Dec 15 11:52:06.002 INFO  Metrics HTTP server started                   listen_address: "127.0.0.1:8551"
...
```

The log message "Metrics HTTP server" was misleading, as the server is actually a Mock Execution Client that provides a JSON-RPC API for testing purposes, not a metrics server.


  


Co-Authored-By: ackintosh <sora.akatsuki@gmail.com>
This commit is contained in:
Akihito Nakano
2026-01-08 04:42:16 +09:00
committed by GitHub
parent 3662e1ab7f
commit 79d314ddba

View File

@@ -754,7 +754,7 @@ pub fn serve<E: EthSpec>(
info!( info!(
listen_address = listening_socket.to_string(), listen_address = listening_socket.to_string(),
"Metrics HTTP server started" "Mock execution client started"
); );
Ok((listening_socket, server)) Ok((listening_socket, server))