From b2cce7f051196f768846017c8a5ed4825c390fa6 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 8 Mar 2015 21:21:31 +0100 Subject: [PATCH] Remove extra argument --- walk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/walk.go b/walk.go index 92e2005f5..b617ed3ab 100644 --- a/walk.go +++ b/walk.go @@ -54,5 +54,5 @@ func WalkTree(server Server, id backend.ID, done chan struct{}, jobCh chan<- Wal debug.Log("WalkTree", "start on %v", id.Str()) walkTree(server, "", id, done, jobCh) close(jobCh) - debug.Log("WalkTree", "done", id.Str()) + debug.Log("WalkTree", "done") }