I backup our servers using rsync like this
rsync -av --delete /mnt/backup backupserverIPadress::backupfolder > /mnt/logs/textfile.txt
It was working fine until 10 days ago. When I check on the output in textfile.txt
I found building file list ... only
I am almost sure that there have been changes in the server in the last days.
You may not be getting the whole picture. If anything (like errors) are sent to STDERR you will not see them in you log files. Try this command instead which will also redirect STDERR to the log file (note the end of the command):
You might want to also add in the --dry-run option. From the rsync manual: