summaryrefslogtreecommitdiff
path: root/src/passwords.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-03-29 05:29:15 +0000
committerLars Wirzenius <liw@liw.fi>2022-03-29 05:29:15 +0000
commit961d091f418f67c7435d085a4d71cc17b78345a9 (patch)
tree34477bf87fae54bba2309946070a1c0128f050b3 /src/passwords.rs
parentf44770ab64d465c099ca893a0536e467052f9d3b (diff)
parentebf62ea27dd576e3351b6c2ac3f8f9abc28672e5 (diff)
downloadobnam2-961d091f418f67c7435d085a4d71cc17b78345a9.tar.gz
Merge branch 'feature/remove-debug-prints' into 'main'
Remove debug prints See merge request obnam/obnam!225
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)