Skip to content

Commit

Permalink
move 'FAILED FILE: xxx' logging to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanbriney committed Jan 29, 2016
1 parent 035ee84 commit c7b926f
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 c7b926f

Please sign in to comment.