It's easy to extend the savelog.LAST.sh with a few lines, so all error lines also appear on the screen and in fai.log
--- savelog.LAST.sh 2018-07-26 13:59:33.678976391 +0200
+++ /home/xxxx/savelog.LAST.sh 2018-10-11 02:28:31.947821982 +0200
@@ -203,6 +203,9 @@
if [ -s $errfile ]; then
echo "ERRORS found in log files. See $errfile" >&2
+ echo === ERRORS ===
+ cat $errfile
+ echo === ERRORS ===
else
echo "Congratulations! No errors found in log files."
fi
--
regards Thomas

