From 4c6a287f4d18161ed263bb37905edb2566f81245 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Fri, 16 Dec 2022 18:37:45 +0000 Subject: Switch to using ATUIN_LOG instead of RUST_LOG (#642) * Switch to using ATUIN_LOG instead of RUST_LOG * Stop clippy complaining * I should know better - clippy is never happy :( --- src/command/client/sync/login.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command/client/sync/login.rs') diff --git a/src/command/client/sync/login.rs b/src/command/client/sync/login.rs index 333a1514..038e822b 100644 --- a/src/command/client/sync/login.rs +++ b/src/command/client/sync/login.rs @@ -72,6 +72,6 @@ pub(super) fn read_user_password() -> String { } fn read_user_input(name: &'static str) -> String { - eprint!("Please enter {}: ", name); + eprint!("Please enter {name}: "); get_input().expect("Failed to read from input") } -- cgit v1.3.1