mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
do not print anything if no user id was found
This commit is contained in:
parent
f7bb499c28
commit
9e1bba40f7
2 changed files with 6 additions and 2 deletions
|
@ -126,7 +126,11 @@ Anonymous telemetry: \"Enabled\""
|
|||
);
|
||||
}
|
||||
}
|
||||
eprintln!("Unique User ID:\t\"{}\"", analytics);
|
||||
|
||||
let analytics = analytics.to_string();
|
||||
if analytics != "" {
|
||||
eprintln!("Unique User ID:\t\"{}\"", analytics);
|
||||
}
|
||||
|
||||
eprintln!();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue