show parser errors

This commit is contained in:
Robin Appelman 2024-02-25 17:48:53 +01:00
commit e02a9de1fa
4 changed files with 20 additions and 7 deletions

View file

@ -214,7 +214,7 @@ async fn main() -> Result<()> {
match config.listen {
Listen::Tcp { address, port } => {
let addr = SocketAddr::from((address, port));
info!("listening on {}", addr);
info!("listening on http://{}", addr);
Server::bind(&addr)
.serve(service)
.with_graceful_shutdown(ctrl_c)