Remove leftover debug logging

This commit is contained in:
Drew DeVault 2019-05-13 20:24:04 -04:00
parent 3ace4ef732
commit d5e82ecfe0
1 changed files with 0 additions and 3 deletions

View File

@ -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)
}