🔧 chore: fix link in the logs & add logs for engine error (#170)

This commit is contained in:
neon_arch 2023-08-05 19:16:27 +03:00
parent 246d043e4a
commit 653d08c801
3 changed files with 4 additions and 2 deletions

View file

@ -24,8 +24,8 @@ async fn main() -> std::io::Result<()> {
);
log::info!(
"Open http://{}:{}/ in your browser",
config.binding_ip,
config.port,
config.binding_ip
);
let listener = TcpListener::bind((config.binding_ip.clone(), config.port))?;