In case you have ssh-connection to your server you should try tail'ing it:
tail -f /file
Or using one line command:
ssh -n user@hostname1 'tail -f /your/log/file'
This will show which changes have been done to this file recently, for e.g., if some of your services/machines write something to your remote log.