From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60549) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPYDT-0006Vq-IQ for guix-patches@gnu.org; Fri, 17 Apr 2020 17:08:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPYDS-0001Td-Me for guix-patches@gnu.org; Fri, 17 Apr 2020 17:08:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58470) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jPYDS-0001TK-Jk for guix-patches@gnu.org; Fri, 17 Apr 2020 17:08:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jPYDS-0000Nr-DQ for guix-patches@gnu.org; Fri, 17 Apr 2020 17:08:02 -0400 Subject: [bug#40668] [PATCH] installer: Fix backtrace display. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200416173354.11807-1-m.othacehe@gmail.com> Date: Fri, 17 Apr 2020 23:07:05 +0200 In-Reply-To: <20200416173354.11807-1-m.othacehe@gmail.com> (Mathieu Othacehe's message of "Thu, 16 Apr 2020 19:33:54 +0200") Message-ID: <87imhxakjq.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Mathieu Othacehe Cc: 40668@debbugs.gnu.org Hello, Mathieu Othacehe skribis: > The 'syslog' macro cannot be resolved in the pre-unwind-handler > context. Failed to resolve 'syslog' in this context resulted in the swall= owing > of all installation errors. > > Fixes 5c04b00cf463a543b8ffc9eb55991f6b4cc145dd. > > * gnu/installer.scm (installer-program): Do not try to resolve 'syslog' m= acro > in the pre-unwind-handler. [...] > Since the commit 5c04b00c, error reporting in the installer is broken. Sa= dly > this means that every error happening in the 1.1.0 release will result in= an > installer restart, without any error information reporting.=20 Oh, that=E2=80=99s terrible. :-/ Sorry about that. > - (syslog "crashing due to uncaught exception: ~s ~s~%" > - key args) > + ((@@ (gnu installer utils) syslog) > + "crashing due to uncaught exception: ~s ~s~%" > + key args) Please add (gnu installer utils) to the list of use-modules. =E2=80=98@@=E2=80=99 should only be used in extreme situations. Thanks, Ludo=E2=80=99.