diff options
author | Jesse Keating <jkeating@redhat.com> | 2010-08-02 14:00:06 -0700 |
---|---|---|
committer | Jesse Keating <jkeating@redhat.com> | 2010-08-02 15:25:06 -0700 |
commit | 129f695b499380725fcbcd5fbe4b64cc33bc39e0 (patch) | |
tree | bdcf495e8fae3500f9877f0059757c512a6a2908 | |
parent | 5fc346e92a13707b444e15a16e47267d2e2db643 (diff) | |
download | fedora-packager-129f695b499380725fcbcd5fbe4b64cc33bc39e0.tar.gz fedora-packager-129f695b499380725fcbcd5fbe4b64cc33bc39e0.tar.xz fedora-packager-129f695b499380725fcbcd5fbe4b64cc33bc39e0.zip |
Also log on chain building
-rw-r--r-- | src/pyfedpkg/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py index 3d36fe0..bd2a96d 100644 --- a/src/pyfedpkg/__init__.py +++ b/src/pyfedpkg/__init__.py @@ -846,6 +846,9 @@ class PackageModule: log.debug('Adding %s to the chain' % url) chain[-1].append(url) cmd.append(url) + log.info('Chain building %s + %s for %s' % (self.nvr, + chain, + self.target)) log.debug('Building chain %s for %s with options %s and a ' \ 'priority of %s' % (chain, self.target, opts, priority)) |