restore: add deletions to progress output

This commit is contained in:
Michael Eischer
2024-06-29 21:29:42 +02:00
parent f4b15fdd96
commit aa8e18cf32
8 changed files with 24 additions and 3 deletions

View File

@@ -56,6 +56,8 @@ func (t *jsonPrinter) CompleteItem(messageType ItemAction, item string, size uin
action = "updated"
case ActionFileUnchanged:
action = "unchanged"
case ActionDeleted:
action = "deleted"
default:
panic("unknown message type")
}