sftp: remove stray debug

This commit is contained in:
Nick Craig-Wood 2017-02-04 17:32:44 +00:00
parent 33c2873ae9
commit e4835f535d
1 changed files with 2 additions and 6 deletions

View File

@ -1,10 +1,6 @@
package sftp
import (
"sync"
"github.com/ncw/rclone/fs"
)
import "sync"
// stringLock locks for string IDs passed in
type stringLock struct {
@ -29,7 +25,7 @@ func (l *stringLock) Lock(ID string) {
}
// Wait for the channel to be closed
l.mu.Unlock()
fs.Logf(nil, "Waiting for stringLock on %q", ID)
// fs.Logf(nil, "Waiting for stringLock on %q", ID)
<-ch
l.mu.Lock()
}