commit d5e82ecfe05065a84f1e13bee44e309b8e1559bd
parent 3ace4ef73245577d5d407f48a8214de72b70b57d
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 13 May 2019 20:24:04 -0400
Remove leftover debug logging
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/lib/msgstore.go b/lib/msgstore.go
@@ -1,7 +1,6 @@
package lib
import (
- "fmt"
"io"
"sync"
"time"
@@ -141,8 +140,6 @@ func (store *MessageStore) Update(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.DirectoryInfo:
store.DirInfo = *msg
- fmt.Printf("got dirinfo, %d exists, %d known\n",
- store.DirInfo.Exists, len(store.Uids))
if store.DirInfo.Exists != len(store.Uids) {
store.worker.PostAction(&types.FetchDirectoryContents{}, nil)
}