From 25945718a1b3213696f85184b9b4b238b8b1ae5b Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Tue, 27 Sep 2016 22:23:02 +0200 Subject: [PATCH] Fix recursive call to debug.Log --- src/restic/lock.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/restic/lock.go b/src/restic/lock.go index f32df4f79..50ea9264a 100644 --- a/src/restic/lock.go +++ b/src/restic/lock.go @@ -251,10 +251,6 @@ func (l Lock) String() string { l.Time.Format("2006-01-02 15:04:05"), time.Since(l.Time), l.lockID.Str()) - if l.Stale() { - text += " (stale)" - } - return text }