From d5223d3408561dee4677144277ecfe973931569c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= Date: Mon, 18 Jul 2022 20:39:54 +0200 Subject: [PATCH] catalyst-auto: e-mail more lines of failed logs (1000 instead of 200) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It helps if the log contains the actual error Signed-off-by: Andreas K. Hüttel --- tools/catalyst-auto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/catalyst-auto b/tools/catalyst-auto index 028e09ca..3dfd1233 100755 --- a/tools/catalyst-auto +++ b/tools/catalyst-auto @@ -61,7 +61,7 @@ send_email() { local body if [ -n "${logfile}" ]; then - body=$(printf '%b\n\n\n' "${message}"; tail -n 200 "${logfile}"; printf '\n\n\nFull build log at %s\n' "${logfile}") + body=$(printf '%b\n\n\n' "${message}"; tail -n 1000 "${logfile}"; printf '\n\n\nFull build log at %s\n' "${logfile}") else body=${message} fi