You can use the following bash script (if you can ssh to remote computers and have read access to the log files)
(echo "machine1"; ssh machine1 tail / var / log / messages; echo "machine2"; ssh machine2 tail / var / log / messages;) | less
source
share