From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 08 Aug 2024 15:03:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 72527@debbugs.gnu.org X-Debbugs-Original-To: bug-guix@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.172312937021249 (code B ref -1); Thu, 08 Aug 2024 15:03:02 +0000 Received: (at submit) by debbugs.gnu.org; 8 Aug 2024 15:02:50 +0000 Received: from localhost ([127.0.0.1]:37052 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc4fC-0005We-3E for submit@debbugs.gnu.org; Thu, 08 Aug 2024 11:02:50 -0400 Received: from lists.gnu.org ([209.51.188.17]:51778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc4fA-0005WV-Sw for submit@debbugs.gnu.org; Thu, 08 Aug 2024 11:02:49 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sc4ej-0000q2-Sq for bug-guix@gnu.org; Thu, 08 Aug 2024 11:02:21 -0400 Received: from smtprelay08.ispgateway.de ([134.119.228.106]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sc4ei-00025F-4K for bug-guix@gnu.org; Thu, 08 Aug 2024 11:02:21 -0400 Received: from [62.8.169.120] (helo=milk) by smtprelay08.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1sc4ee-000000000TW-3SvF; Thu, 08 Aug 2024 17:02:16 +0200 From: Simon Streit Gcc: nnfolder+archive:sent.2024-08 Date: Thu, 08 Aug 2024 17:02:16 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn Received-SPF: pass client-ip=134.119.228.106; envelope-from=simon@netpanic.org; helo=smtprelay08.ispgateway.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hello! On inspection of the default settings for Rot[t]log=E2=80=99s service, and reading through /var/log/mcron.log, rottlog always exits with the following error: --8<---------------cut here---------------start------------->8--- 2024-08-07 12:00:00 3408 /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rottlo= g-0.72.2/sbin/rottlog: running... 2024-08-07 12:00:01 3408 /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rottlo= g-0.72.2/sbin/rottlog: failed after 0.199s with: (misc-error #f unclean exi= t status ~S (1) #f) --8<---------------cut here---------------end--------------->8--- Checking directly: --8<---------------cut here---------------start------------->8--- root@host ~# /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rottlog-0.72.2/sbi= n/rottlog -v read_custom: Config file 'custom' does not exist read_daily: Config file 'daily' does not exist check_last_rotate: Checking for week(ly) config file check_last_rotate: Old date : 1722810339 check_last_rotate: New date : 1723125091 check_last_rotate: Next date : Thu 15 Aug 16:51:31 CEST 2024 check_last_rotate: Rotation not needed: 314752 < 604800 read_monthly: Config file 'monthly' does not exist root@host ~# echo $? 1 --8<---------------cut here---------------end--------------->8--- To experiment a little, I add: --8<---------------cut here---------------start------------->8--- (simple-service 'nginx-custom-rotations rottlog-service-type (list (log-rotation (frequency 'custom) (files '("/var/log/nginx/access.log" "/var/log/nginx/error.log")) (options '("storedir nginx period 15"))))) (simple-service 'nginx-daily-rotations rottlog-service-type (list (log-rotation (frequency 'daily) (files '("/var/log/nginx/access.log" "/var/log/nginx/error.log")) (options '("storedir nginx"))))) (simple-service 'nginx-monthly-rotations rottlog-service-type (list (log-rotation (frequency 'monthly) (files '("/var/log/nginx/access.log" "/var/log/nginx/error.log")) (options '("storedir nginx"))))) --8<---------------cut here---------------end--------------->8--- Upon reconfiguration, I called =E2=80=9C/gnu/store/...rottlog -v=E2=80=9D a= gain, and voil=C3=A0, it exits cleanly. The current default is to only provide a weekly rotation. Rottlog expects a custom, daily, weekly and monthly file. The documentation upstream doesn't state this directly. Providing empty files doesn't help either, as it then errors out about syntax errors. Would it make sense to be sure that a weekly file is enough, or all four files are provided in a way? The latter option sounds like slight over engineering. The default weekly rotation is enough for a base system. I doubt it this is someone=E2=80=99s first concern to read through /var/log/mcron.log and understand the error message on a new system. The error message is there and it is not clear why at first sight. Kind regards --=20 Simon From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly References: Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 08 Aug 2024 16:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 72527@debbugs.gnu.org Cc: Simon Streit Received: via spool by 72527-submit@debbugs.gnu.org id=B72527.172313421929814 (code B ref 72527); Thu, 08 Aug 2024 16:24:01 +0000 Received: (at 72527) by debbugs.gnu.org; 8 Aug 2024 16:23:39 +0000 Received: from localhost ([127.0.0.1]:37103 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc5vO-0007kn-L7 for submit@debbugs.gnu.org; Thu, 08 Aug 2024 12:23:38 -0400 Received: from mx1.dismail.de ([78.46.223.134]:12966) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc5vL-0007kM-TE for 72527@debbugs.gnu.org; Thu, 08 Aug 2024 12:23:37 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 639db96b; Thu, 8 Aug 2024 18:23:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:in-reply-to:date:message-id:mime-version:content-type; s=20190914; bh=yncbb64rORzAz4noJ6swS7FC6qn4CLbyUW/av9xXlNc=; b= u8vIiy4sZawKEb/xqXoIpu8Dw2yAWR4kwnzo+ADERNvk0n9rwutlckKYjY7e5fTQ gE4QRylHIe+OEGa770Nqf0PdXdZUWh1beo9aIyNL+01LctXhYvGOytMHdP5Joa/+ xGIPwQDdm2xHTGTNqb/j3HGZ64hfl201KXDM8fqg/M+jMYcfpEn+3kBpyChHHmb/ yztbHzaZGlvljjW+8GyTdnFjixc71bTZorqPFhT85AYTjFP1OyVhWmsF8lPyNHGj /q1LbpES1Qg3IM+U9ZvCnhIp3jp9tTN3SlazSY1ywRKQOTzf1FWNYlwhRUGmQke/ l8Pw8zuiu685g+Iu8lgYQQ== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id d87153ee; Thu, 8 Aug 2024 18:23:01 +0200 (CEST) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 275e5b43; Thu, 8 Aug 2024 18:23:01 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id b2553935 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Thu, 8 Aug 2024 18:23:01 +0200 (CEST) From: jgart In-Reply-To: Date: Thu, 08 Aug 2024 11:22:58 -0500 Message-ID: <875xsbyof1.fsf@dismail.de> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Simon, Thanks for investigating this. Would you be interested in sending a v1 patch with a proposal that fixes the issue. I could then test it. wdyt -- all the best, jgart From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 08 Aug 2024 17:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: jgart Cc: 72527@debbugs.gnu.org Received: via spool by 72527-submit@debbugs.gnu.org id=B72527.17231380724283 (code B ref 72527); Thu, 08 Aug 2024 17:28:02 +0000 Received: (at 72527) by debbugs.gnu.org; 8 Aug 2024 17:27:52 +0000 Received: from localhost ([127.0.0.1]:37134 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc6vX-000170-OI for submit@debbugs.gnu.org; Thu, 08 Aug 2024 13:27:51 -0400 Received: from smtprelay04.ispgateway.de ([80.67.31.31]:7949) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sc6vW-00016s-5x for 72527@debbugs.gnu.org; Thu, 08 Aug 2024 13:27:51 -0400 Received: from [62.8.169.120] (helo=milk) by smtprelay04.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1sc6v1-000000001EF-2BCk; Thu, 08 Aug 2024 19:27:19 +0200 From: Simon Streit In-Reply-To: <875xsbyof1.fsf@dismail.de> (jgart@dismail.de's message of "Thu, 08 Aug 2024 11:22:58 -0500") References: <875xsbyof1.fsf@dismail.de> Gcc: nnfolder+archive:sent.2024-08 Date: Thu, 08 Aug 2024 19:27:18 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello jgart, jgart writes: > Would you be interested in sending a v1 patch with a proposal that > fixes the issue. I could then test it. I'll workout a patch and post it, once I've got one. Kind regards, -- Simon From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Mon, 16 Sep 2024 15:33:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Simon Streit Cc: 72527@debbugs.gnu.org Received: via spool by 72527-submit@debbugs.gnu.org id=B72527.172650072626825 (code B ref 72527); Mon, 16 Sep 2024 15:33:01 +0000 Received: (at 72527) by debbugs.gnu.org; 16 Sep 2024 15:32:06 +0000 Received: from localhost ([127.0.0.1]:53081 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqDhu-0006ya-0U for submit@debbugs.gnu.org; Mon, 16 Sep 2024 11:32:06 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43290) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqDhs-0006xw-BF for 72527@debbugs.gnu.org; Mon, 16 Sep 2024 11:32:04 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sqDfT-0006bB-OJ; Mon, 16 Sep 2024 11:29:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=52foMdAgTD1iX+/Ldf6F1fro1T/GzVKQgg4vY2Nsouk=; b=kJ4eeCaq5TlSyx5lNB6i rlC9tmn3HFZaFRaTICx6IwnsmwprWndfdyDPUmyDSmdOWK7wHrM/1yydz8Y6slrzk6Sk6S6f9WBvs 4g/viJ1JhYjK7vFxar1HyCnZVDE9ZXoJ6TyVaHZByUcdForbwFt8LDlORpdrWJ8ZbMFeKc6xwY93o MfUwEoLYLqeg5Z2nLlugTUxipdZT3jM5hJlH/867NTuWUPcGdMMXaXCPf8uXkHRtqMme2uVA28zjC D6tIZLjmbCzzQdfeXfBe/u2qSkizRDNwcbFbZ/L8JnFvL31VPYOiiUqjDjzCMMYdbJdQDmdCaaxqK VqVPvY1r02pAcA==; From: Ludovic =?UTF-8?Q?Court=C3=A8s?= In-Reply-To: (Simon Streit's message of "Thu, 08 Aug 2024 17:02:16 +0200") References: Date: Mon, 16 Sep 2024 17:29:32 +0200 Message-ID: <87bk0nehwj.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Simon, Simon Streit skribis: > On inspection of the default settings for Rot[t]logs service, and > reading through /var/log/mcron.log, rottlog always exits with the > following error: > > 2024-08-07 12:00:00 3408 /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rott= log-0.72.2/sbin/rottlog: running... > 2024-08-07 12:00:01 3408 /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rott= log-0.72.2/sbin/rottlog: failed after 0.199s with: (misc-error #f unclean e= xit status ~S (1) #f) > > > Checking directly: > > root@host ~# /gnu/store/scligrs2fwpsy6jvffraa274k7ipbg81-rottlog-0.72.2/s= bin/rottlog -v > read_custom: Config file 'custom' does not exist > read_daily: Config file 'daily' does not exist > check_last_rotate: Checking for week(ly) config file > check_last_rotate: Old date : 1722810339 > check_last_rotate: New date : 1723125091 > check_last_rotate: Next date : Thu 15 Aug 16:51:31 CEST 2024 > check_last_rotate: Rotation not needed: 314752 < 604800 > read_monthly: Config file 'monthly' does not exist > root@host ~# echo $? > 1 FWIW I would recommend not investing too much time in Rottlog: well hopefully be able to migrate to the Shepherds log rotation service in the coming months. https://lists.gnu.org/archive/html/guix-devel/2024-05/msg00159.html Ludo=E2=80=99. From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Wed, 13 Nov 2024 21:17:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 72527@debbugs.gnu.org Received: via spool by 72527-submit@debbugs.gnu.org id=B72527.173153257314362 (code B ref 72527); Wed, 13 Nov 2024 21:17:01 +0000 Received: (at 72527) by debbugs.gnu.org; 13 Nov 2024 21:16:13 +0000 Received: from localhost ([127.0.0.1]:43913 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tBKij-0003jZ-9h for submit@debbugs.gnu.org; Wed, 13 Nov 2024 16:16:13 -0500 Received: from smtprelay05.ispgateway.de ([80.67.31.100]:11285) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tBKih-0003jO-Nu for 72527@debbugs.gnu.org; Wed, 13 Nov 2024 16:16:12 -0500 Received: from [62.144.247.147] (helo=milk) by smtprelay05.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1tBKie-000000007tU-0tWs; Wed, 13 Nov 2024 22:16:08 +0100 From: Simon Streit In-Reply-To: <87bk0nehwj.fsf@gnu.org> ("Ludovic =?UTF-8?Q?Court=C3=A8s?="'s message of "Mon, 16 Sep 2024 17:29:32 +0200") References: <87bk0nehwj.fsf@gnu.org> Gcc: nnfolder+archive:sent.2024-11 Date: Wed, 13 Nov 2024 22:16:07 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello Ludovic, Ludovic Court=C3=A8s writes: > FWIW I would recommend not investing too much time in Rottlog: well > hopefully be able to migrate to the Shepherds log rotation service in > the coming months. > > https://lists.gnu.org/archive/html/guix-devel/2024-05/msg00159.html I just rolled out shepherd 1.0.0rc1 locally that also includes brand new logging facilities. It looks so much better there. I am assuming once this release proceeds, rottlog will be eventually be completely replaced? I don't see a need to follow this issue any more. Closing.=20 Kind regards --=20 Simon From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 13 16:22:06 2024 Received: (at control) by debbugs.gnu.org; 13 Nov 2024 21:22:06 +0000 Received: from localhost ([127.0.0.1]:43921 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tBKoQ-0003yu-2L for submit@debbugs.gnu.org; Wed, 13 Nov 2024 16:22:06 -0500 Received: from smtprelay01.ispgateway.de ([80.67.18.43]:14230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tBKoO-0003yl-CO for control@debbugs.gnu.org; Wed, 13 Nov 2024 16:22:04 -0500 Received: from [62.144.247.147] (helo=milk) by smtprelay01.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1tBKoK-0000000075o-2m8F for control@debbugs.gnu.org; Wed, 13 Nov 2024 22:22:01 +0100 Date: Wed, 13 Nov 2024 22:22:00 +0100 Message-Id: To: control@debbugs.gnu.org From: Simon Streit Subject: control message for bug #72527 X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 72527 quit From unknown Mon Aug 18 11:27:51 2025 X-Loop: help-debbugs@gnu.org Subject: bug#72527: Rottlog never exits cleanly Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Wed, 20 Nov 2024 11:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 72527 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Simon Streit Cc: 72527@debbugs.gnu.org Received: via spool by 72527-submit@debbugs.gnu.org id=B72527.173210352431843 (code B ref 72527); Wed, 20 Nov 2024 11:53:02 +0000 Received: (at 72527) by debbugs.gnu.org; 20 Nov 2024 11:52:04 +0000 Received: from localhost ([127.0.0.1]:45605 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tDjFc-0008HX-8s for submit@debbugs.gnu.org; Wed, 20 Nov 2024 06:52:04 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43290) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tDjFa-0008H2-RA for 72527@debbugs.gnu.org; Wed, 20 Nov 2024 06:52:03 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tDjFV-0001Hz-Ai; Wed, 20 Nov 2024 06:51:57 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=M/Usc2oeXzV3C0W8TyJ5Oi/d2GhvRXeXNiYID2StDA8=; b=cxzAa4sh9qmoFUZ8uTD6 Q1BpGw56TyAzgJaKtozR6M9pAR4k8sBqeQW/5a4bVbS4Zl/qeWkJ1FeItJhKDIgbq/5VjTJisoXbA icRqkhviBQBZGUYR32lqfkTGZL0WI7NR8W/GCJTdTCHkHEVvTTVkyCGYUaas8ERzu35DrYw/ZpMLV iNqfExovwjl4PshFICA6qoC1QTXRVBJQw+uDqhZnXZItJt0ncP3yiw/oHzS8BgQvKT4NiPWWbyFoB FtML3sA93hjZDGDTG2gMLkpaMRPrg+20ldqtH33cYpB8KlSvFVn5YGv3ZsxPB4NaCmNl+W9d6mvbQ +PGWcHvmIlI4yw==; From: Ludovic =?UTF-8?Q?Court=C3=A8s?= In-Reply-To: (Simon Streit's message of "Wed, 13 Nov 2024 22:16:07 +0100") References: <87bk0nehwj.fsf@gnu.org> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: =?UTF-8?Q?D=C3=A9cadi?= 30 Brumaire an 233 de la =?UTF-8?Q?R=C3=A9volution,?= jour du Rouleau X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Wed, 20 Nov 2024 12:51:54 +0100 Message-ID: <87mshuxgv9.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Simon Streit skribis: > Ludovic Court=C3=A8s writes: > >> FWIW I would recommend not investing too much time in Rottlog: well >> hopefully be able to migrate to the Shepherds log rotation service in >> the coming months. >> >> https://lists.gnu.org/archive/html/guix-devel/2024-05/msg00159.html > > I just rolled out shepherd 1.0.0rc1 locally that also includes brand new > logging facilities. It looks so much better there. I am assuming once > this release proceeds, rottlog will be eventually be completely > replaced? Yes, that=E2=80=99s the plan. (It=E2=80=99s a bit tricky because someone r= econfiguring a pre-1.0 system won=E2=80=99t be able to run timed services.) Ludo=E2=80=99.