1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-13 20:38:12 +02:00

drive: drop "Disabling ListR" messages down to debug

This was causing unecessary anguish for users since these messages are
harmless and really only interesting for debugging.

See: https://forum.rclone.org/t/rclone-gdrive-error/18098
This commit is contained in:
Nick Craig-Wood 2020-07-25 16:50:55 +01:00
parent d35673efc6
commit 101f82c6b3

View File

@ -1741,7 +1741,7 @@ func (f *Fs) listRRunner(ctx context.Context, wg *sync.WaitGroup, in chan listRE
// https://issuetracker.google.com/issues/149522397 // https://issuetracker.google.com/issues/149522397
if len(dirs) > 1 && !foundItems { if len(dirs) > 1 && !foundItems {
if atomic.SwapInt32(&f.grouping, 1) != 1 { if atomic.SwapInt32(&f.grouping, 1) != 1 {
fs.Logf(f, "Disabling ListR to work around bug in drive as multi listing (%d) returned no entries", len(dirs)) fs.Debugf(f, "Disabling ListR to work around bug in drive as multi listing (%d) returned no entries", len(dirs))
} }
var recycled = make([]listREntry, len(dirs)) var recycled = make([]listREntry, len(dirs))
f.listRmu.Lock() f.listRmu.Lock()
@ -1774,7 +1774,7 @@ func (f *Fs) listRRunner(ctx context.Context, wg *sync.WaitGroup, in chan listRE
// empty so must have made a mistake // empty so must have made a mistake
if len(f.listRempties) == 0 { if len(f.listRempties) == 0 {
if atomic.SwapInt32(&f.grouping, listRGrouping) != listRGrouping { if atomic.SwapInt32(&f.grouping, listRGrouping) != listRGrouping {
fs.Logf(f, "Re-enabling ListR as previous detection was in error") fs.Debugf(f, "Re-enabling ListR as previous detection was in error")
} }
} }
} }