From 2fdca5d310a1238670b85acee8467fb9783ee514 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 10 Sep 2017 15:16:05 +0200 Subject: [PATCH] Improve debug message --- cmd/restic/exclude.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/exclude.go b/cmd/restic/exclude.go index d520f9c80..58aef7f1b 100644 --- a/cmd/restic/exclude.go +++ b/cmd/restic/exclude.go @@ -29,7 +29,7 @@ func rejectByPattern(patterns []string) RejectFunc { } if matched { - debug.Log("path %q excluded by a filter", item) + debug.Log("path %q excluded by an exclude pattern", item) return true }