Fix display of http address

This commit is contained in:
Clémentine Urquizar 2021-03-26 12:04:22 +01:00
parent 28095c6454
commit 9587ea7f06
No known key found for this signature in database
GPG Key ID: D8E7CC7422E77E1A
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ pub fn print_launch_resume(opt: &Opt, data: &Data) {
eprintln!("{}", ascii_name);
eprintln!("Database path:\t\t{:?}", opt.db_path);
eprintln!("Server listening on: http://\t{:?}", opt.http_addr);
eprintln!("Server listening on:\t\"http://{}\"", opt.http_addr);
eprintln!("Environment:\t\t{:?}", opt.env);
eprintln!("Commit SHA:\t\t{:?}", env!("VERGEN_SHA").to_string());
eprintln!(