summaryrefslogtreecommitdiff
path: root/src/passwords.rs
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2022-03-28 22:09:25 +0300
committerAlexander Batischev <eual.jp@gmail.com>2022-03-28 22:09:25 +0300
commitebf62ea27dd576e3351b6c2ac3f8f9abc28672e5 (patch)
tree34477bf87fae54bba2309946070a1c0128f050b3 /src/passwords.rs
parentf44770ab64d465c099ca893a0536e467052f9d3b (diff)
downloadobnam2-ebf62ea27dd576e3351b6c2ac3f8f9abc28672e5.tar.gz
Remove debug prints
Diffstat (limited to 'src/passwords.rs')
-rw-r--r--src/passwords.rs2
1 files changed, 0 insertions, 2 deletions
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)