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.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command/client/sync.rs') diff --git a/src/command/client/sync.rs b/src/command/client/sync.rs index 51fcbf63..b97a2240 100644 --- a/src/command/client/sync.rs +++ b/src/command/client/sync.rs @@ -41,7 +41,7 @@ impl Cmd { use atuin_client::encryption::{encode_key, load_key}; let key = load_key(&settings).wrap_err("could not load encryption key")?; let encode = encode_key(key).wrap_err("could not encode encryption key")?; - println!("{}", encode); + println!("{encode}"); Ok(()) } } -- cgit v1.3.1