Skip to content

Commit

Permalink
Fix display of http address
Browse files Browse the repository at this point in the history
  • Loading branch information
curquiza committed Mar 26, 2021
1 parent 28095c6 commit 9587ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meilisearch-http/src/main.rs
Expand Up @@ -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!(
Expand Down

0 comments on commit 9587ea7

Please sign in to comment.