From 83b602979f282ec51cffb57132cfc219dcd40846 Mon Sep 17 00:00:00 2001 From: Michael McLean Date: Wed, 21 Mar 2007 17:47:55 -0400 Subject: [PATCH] debug message for downloads --- builder/kojid | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/kojid b/builder/kojid index c5be2764..9ef383b0 100755 --- a/builder/kojid +++ b/builder/kojid @@ -1270,6 +1270,7 @@ class BaseTaskHandler(object): If the file is on an nfs mount, use that, otherwise download a copy""" if options.topurl: + self.logger.debug("Downloading %s", relpath) url = "%s/%s" % (options.topurl, relpath) fsrc = urllib2.urlopen(url) fn = "%s/local/%s" % (self.workdir, relpath)