Remove leftover debug logging
This commit is contained in:
parent
3ace4ef732
commit
d5e82ecfe0
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue