Skip to content

Commit

Permalink
Merge pull request #6 from briney/development
Browse files Browse the repository at this point in the history
move 'FAILED FILE: xxx' logging to debug
  • Loading branch information
briney committed Jan 29, 2016
2 parents 035ee84 + c7b926f commit 27c6833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abstar/abstar.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def _run_jobs_via_celery(files, output_dir, args):
succeeded, failed = monitor_celery_jobs(async_results)
failed_files = [f for i, f in enumerate(files) if async_results[i].failed()]
for ff in failed_files:
logger.info('FAILED FILE: {}'.format(f))
logger.debug('FAILED FILE: {}'.format(f))
return [s.get() for s in succeeded]


Expand Down

0 comments on commit 27c6833

Please sign in to comment.