Skip to content
This repository has been archived by the owner on Jul 24, 2018. It is now read-only.

Commit

Permalink
Merge pull request #17 from fedora-infra/feature/log_more_detail
Browse files Browse the repository at this point in the history
When ingesting a new source file, indicate the package concerned
  • Loading branch information
ralphbean committed Feb 21, 2014
2 parents 19ac569 + 4af4990 commit b2dfb81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion summershum/core.py
Expand Up @@ -18,7 +18,8 @@ def ingest(session, msg, config, force=False):
log.info("Skipping %r, sum found in the db" % msg.get('filename'))
return

log.info("Ingesting %r" % msg.get('filename'))
log.info("Ingesting %r - package: %r" % (
msg.get('filename'), msg.get('name')))
fedmsg.publish(
topic='ingest.start',
msg=dict(original=msg),
Expand Down

0 comments on commit b2dfb81

Please sign in to comment.