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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0236B138334 for ; Sat, 19 Oct 2019 23:25:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 450F4E0899; Sat, 19 Oct 2019 23:25:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E6E7E0899 for ; Sat, 19 Oct 2019 23:25:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D89134BCFC for ; Sat, 19 Oct 2019 23:25:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BD6F773 for ; Sat, 19 Oct 2019 23:25:28 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1571526667.f06836c23696fb6eb4bcae3b343129e2d4b4d1ac.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f06836c23696fb6eb4bcae3b343129e2d4b4d1ac X-VCS-Branch: master Date: Sat, 19 Oct 2019 23:25:28 +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: c7d61180-d504-424f-93c9-27eb272020dc X-Archives-Hash: f79781e29cdd8ac962be91f67c360b9b commit: f06836c23696fb6eb4bcae3b343129e2d4b4d1ac Author: Matt Turner gentoo org> AuthorDate: Sat Oct 19 23:11:07 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 19 23:11:07 2019 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f06836c2 Improve debugging messages - Move start message out of loop - Print loaded module name in the loop Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index c68c278d..2ad53381 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -75,10 +75,11 @@ class StageBase(TargetBase, ClearBase, GenBase): self.subarchmap = {} machinemap = {} arch_dir = self.settings["archdir"] + "/" + log.debug("Begin loading arch modules...") for x in [ x[:-3] for x in os.listdir(arch_dir) if x.endswith(".py") and x != "__init__.py"]: - log.debug("Begin loading arch modules...") + log.debug("\tLoading %s", x) try: fh = open(arch_dir + x + ".py") # This next line loads the plugin as a module and