For a number of years I’ve been using grive2 to sync my local files to Google Drive. But I’m migrating from RedHat to Debian and so I thought I’d use rclone for this (to avoid another tool; I’m already using it elsewhere).
So
rclone bisync -L . grive: 2>&1 | grep -v ' bisync is IN BETA. Don.t use in production!'
And this works. But it’s quiet. If I add the -v flag then I get a lot of debug output.
`
2025/08/17 22:40:30 INFO : Setting --ignore-listing-checksum as neither --checksum nor --compare checksum are set.
2025/08/17 22:40:30 INFO : Bisyncing with Comparison Settings:
{
"Modtime": true,
"Size": true,
"Checksum": false,
"HashType1": 0,
"HashType2": 0,
"NoSlowHash": false,
"SlowHashSyncOnly": false,
"SlowHashDetected": true,
"DownloadHash": false
}
2025/08/17 22:40:30 INFO : Synching Path1 "local{12rtk}:/home/sweh/Google-Drive/" with Path2 "grive:/"
2025/08/17 22:40:30 INFO : Building Path1 and Path2 listings
2025/08/17 22:40:39 INFO : Path1 checking for diffs
2025/08/17 22:40:39 INFO : - Path1 File was deleted - foooo
2025/08/17 22:40:39 INFO : Path1: 1 changes: 0 new, 0 modified, 1 deleted
2025/08/17 22:40:39 INFO : Path2 checking for diffs
2025/08/17 22:40:39 INFO : Applying changes
2025/08/17 22:40:39 INFO : - Path2 Queue delete - grive:/foooo
2025/08/17 22:40:39 INFO : - Path1 Do queued copies to - Path2
2025/08/17 22:40:40 INFO : foooo: Deleted
2025/08/17 22:40:40 INFO : There was nothing to transfer
2025/08/17 22:40:40 INFO : Updating listings
2025/08/17 22:40:41 INFO : Validating listings for Path1 "local{12rtk}:/home/sweh/Google-Drive/" vs Path2 "grive:/"
2025/08/17 22:40:41 INFO : Bisync successful
2025/08/17 22:40:41 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Checks: 4100 / 4100, 100%
Deleted: 1 (files), 0 (dirs), 7 B (freed)
Elapsed time: 10.7s
We seem to have “no output” vs “debug output”.
The old answer was “don’t use -v” but use “--stats-log-level NOTICE” but that just provides a summary of what happened, not a list of files updated/deleted.
Is there a flag that will tell me what happened?
(FWIW, rclone v1.69.0, but I doubt this has changed in latter versions)