summaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-12-31 15:32:51 +0200
committerLars Wirzenius <liw@liw.fi>2020-12-31 17:25:42 +0200
commit6171b3c2eb8ec9a7734e8ce00c81999500b5fbe6 (patch)
tree9388040e96f3a42679860f70c4540aedceff329d /src/client.rs
parent85d0ce236677c35c85d76bfc345e36d29f585390 (diff)
downloadobnam2-6171b3c2eb8ec9a7734e8ce00c81999500b5fbe6.tar.gz
feat: incremental backup
This uses the previous, latest generation as a guideline to see what is new or changed.
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client.rs b/src/client.rs
index f76d817..616ceef 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -195,7 +195,6 @@ impl BackupClient {
debug!("list_generationgs: body={:?}", body);
let map: HashMap<String, ChunkMeta> = serde_yaml::from_slice(&body)?;
debug!("list_generations: map={:?}", map);
- eprintln!("list_generations: map={:?}", map);
let finished = map
.iter()
.map(|(id, meta)| FinishedGeneration::new(id, meta.ended().map_or("", |s| s)))