Remove leftover debug logging
This commit is contained in:
parent
3ace4ef732
commit
d5e82ecfe0
|
@ -1,7 +1,6 @@
|
||||||
package lib
|
package lib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -141,8 +140,6 @@ func (store *MessageStore) Update(msg types.WorkerMessage) {
|
||||||
switch msg := msg.(type) {
|
switch msg := msg.(type) {
|
||||||
case *types.DirectoryInfo:
|
case *types.DirectoryInfo:
|
||||||
store.DirInfo = *msg
|
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) {
|
if store.DirInfo.Exists != len(store.Uids) {
|
||||||
store.worker.PostAction(&types.FetchDirectoryContents{}, nil)
|
store.worker.PostAction(&types.FetchDirectoryContents{}, nil)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue