Skip to content

Commit

Permalink
Yanking print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Taylor committed Mar 3, 2011
1 parent 8c45abe commit 007a2df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions media_nommer/feederd/job_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ def load_recent_jobs_at_startup(cls):
for job in jobs:
cls.update_job(job)

print("Jobs loaded from SDB to cache:")
logger.info("Jobs loaded from SDB to cache:")
for job in jobs:
print('* %s (%s -- %s)' % (
logger.info('* %s (%s -- %s)' % (
job.unique_id, job.job_state,
job.is_finished())
)
Expand Down

0 comments on commit 007a2df

Please sign in to comment.