From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79AF4158094 for ; Mon, 18 Jul 2022 18:40:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE6F0E0AF7; Mon, 18 Jul 2022 18:40:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70612E0AF7 for ; Mon, 18 Jul 2022 18:40:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E778340EBA for ; Mon, 18 Jul 2022 18:40:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1896456 for ; Mon, 18 Jul 2022 18:40:32 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1658169594.d5223d3408561dee4677144277ecfe973931569c.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: d5223d3408561dee4677144277ecfe973931569c X-VCS-Branch: master Date: Mon, 18 Jul 2022 18:40:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 54d9d07d-39cf-45bd-a1db-250886da47da X-Archives-Hash: 9ca7570b028c848fab927e9e280836a9 commit: d5223d3408561dee4677144277ecfe973931569c Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jul 18 18:39:54 2022 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Jul 18 18:39:54 2022 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=d5223d34 catalyst-auto: e-mail more lines of failed logs (1000 instead of 200) It helps if the log contains the actual error Signed-off-by: Andreas K. Hüttel gentoo.org> 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