From 94e70bc1a62e5dfa6e952f6c7bed1ef8b8cf4145 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Mon, 23 May 2022 19:39:24 +0200 Subject: [PATCH] WIP: log received `updated_entries` on remote worktree Co-Authored-By: Nathan Sobo --- crates/project/src/worktree.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/project/src/worktree.rs b/crates/project/src/worktree.rs index c730fc0116..73fbd40fb0 100644 --- a/crates/project/src/worktree.rs +++ b/crates/project/src/worktree.rs @@ -1179,6 +1179,7 @@ impl Snapshot { for entry in update.updated_entries { let entry = Entry::try_from((&self.root_char_bag, entry))?; + println!("{:?} = {}", &entry.path, entry.is_ignored); if let Some(PathEntry { path, .. }) = self.entries_by_id.get(&entry.id, &()) { entries_by_path_edits.push(Edit::Remove(PathKey(path.clone()))); }