From 3b7ca4ac354b0d3aad363515defec4b8cb90a092 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 4 Jun 2017 11:22:56 +0200 Subject: [PATCH] find: Improve debug log --- src/cmds/restic/cmd_find.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmds/restic/cmd_find.go b/src/cmds/restic/cmd_find.go index e78b14e2..853fc881 100644 --- a/src/cmds/restic/cmd_find.go +++ b/src/cmds/restic/cmd_find.go @@ -173,7 +173,7 @@ func (s *statefulOutput) Finish() { } func findInTree(repo *repository.Repository, pat *findPattern, id restic.ID, prefix string, state *statefulOutput) error { - debug.Log("checking tree %v\n", id) + debug.Log("%v checking tree %v\n", prefix, id) tree, err := repo.LoadTree(id) if err != nil {