I’m running rclone from within a cron script - so I basically see the summary of what happened in an email.
I am struggling to find a good logging option that just gives me some summary information about what happened - I am not interested in having a line per change made, or output every n minutes etc, but a summary similar to that you get from (say)
rsync -ra --stats /src/ /dest/
Currently I seem to be stuck between no logging option (which is returning nothing for me), or --verbose which is more verbose than I would like…
Using --stats-log-level NOTICE was most of it, but I also added --stats 30m so I did not get lots of intermediate info (my rclone sessions typically take a few minutes).