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 74FAB139085 for ; Sat, 24 Dec 2016 09:41:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD5452340E8; Sat, 24 Dec 2016 09:41:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A8722340E8 for ; Sat, 24 Dec 2016 09:41:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2F073412B7 for ; Sat, 24 Dec 2016 09:41:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D24C924ED for ; Sat, 24 Dec 2016 09:41:17 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1482572427.6a438b21c7a16d851da1189cd6a522cb1b3cd2c4.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:gsoc-2016 commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/seedhandler.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 6a438b21c7a16d851da1189cd6a522cb1b3cd2c4 X-VCS-Branch: gsoc-2016 Date: Sat, 24 Dec 2016 09:41:17 +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-Archives-Salt: c98ef9d9-b38d-40fd-bebc-29f624752811 X-Archives-Hash: c58c347218cafa4948b93a2e05f579ed commit: 6a438b21c7a16d851da1189cd6a522cb1b3cd2c4 Author: Brian Dolbec gentoo org> AuthorDate: Sat Dec 24 09:08:14 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Dec 24 09:40:27 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=6a438b21 gkeys seedhandler.py: Add another debug log for the seedurl and seedpath This is to aid in troubleshooting fetch-sedd url errors. gkeys/gkeys/seedhandler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gkeys/gkeys/seedhandler.py b/gkeys/gkeys/seedhandler.py index 90ce583..f36d3e2 100644 --- a/gkeys/gkeys/seedhandler.py +++ b/gkeys/gkeys/seedhandler.py @@ -186,6 +186,7 @@ class SeedHandler(object): for seed in [seeds]: seedurl = self.config.get_key('seedurls', seed) seedpath = self.config.get_key('seeds', seed) + self.logger.debug("Seed URL/seed path...: %s, %s" % (seedurl, seedpath)) if seedurl and seedpath and http_check.match(seedurl): urls.extend([(seed, seedurl, seedpath)]) else: