From 2e72b57f2f5d111da2f6133a00838abe351c5aac Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 25 Sep 2017 14:35:37 +0200 Subject: [PATCH] Correct debug message --- internal/restic/snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/restic/snapshot.go b/internal/restic/snapshot.go index f73be6937..47b123240 100644 --- a/internal/restic/snapshot.go +++ b/internal/restic/snapshot.go @@ -163,7 +163,7 @@ func (sn *Snapshot) HasTagList(l []TagList) bool { for _, tags := range l { if sn.HasTags(tags) { - debug.Log(" snapshot satisfies %v", tags, l) + debug.Log(" snapshot satisfies %v %v", tags, l) return true } }