From ebf62ea27dd576e3351b6c2ac3f8f9abc28672e5 Mon Sep 17 00:00:00 2001 From: Alexander Batischev Date: Mon, 28 Mar 2022 22:09:25 +0300 Subject: Remove debug prints --- src/passwords.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/passwords.rs') diff --git a/src/passwords.rs b/src/passwords.rs index c448087..ea476bf 100644 --- a/src/passwords.rs +++ b/src/passwords.rs @@ -42,8 +42,6 @@ impl Passwords { /// Save passwords to file. pub fn save(&self, filename: &Path) -> Result<(), PasswordError> { - eprintln!("saving passwords to {:?}", filename); - let data = serde_yaml::to_string(&self).map_err(PasswordError::Serialize)?; let mut file = std::fs::File::create(filename) -- cgit v1.2.1