Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Update display #122

Merged
merged 1 commit into from
Apr 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions meilisearch-http/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,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:\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 All @@ -137,7 +137,7 @@ pub fn print_launch_resume(opt: &Opt, data: &Data) {
);

eprintln!(
"Amplitude Analytics:\t{:?}",
"Anonymous telemetry:\t{:?}",
if !opt.no_analytics {
"Enabled"
} else {
Expand Down