From 9baafdafa25482cc1e8857c434f58176e2177d09 Mon Sep 17 00:00:00 2001 From: Gilbert Chen Date: Thu, 21 Nov 2019 21:23:31 -0500 Subject: [PATCH] Remove a log message meant for debugging only --- src/duplicacy_entry.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/duplicacy_entry.go b/src/duplicacy_entry.go index 69a7525..f171ef8 100644 --- a/src/duplicacy_entry.go +++ b/src/duplicacy_entry.go @@ -490,7 +490,6 @@ func ListEntries(top string, path string, fileList *[]*Entry, patterns []string, } if entry.IsLink() { isRegular := false - LOG_INFO("debug", "readlink: %s %s", top, entry.Path) isRegular, entry.Link, err = Readlink(joinPath(top, entry.Path)) if err != nil { LOG_WARN("LIST_LINK", "Failed to read the symlink %s: %v", entry.Path, err)