Mercurial > public > sg101
diff custom_search/tasks.py @ 755:f97dd33ca52d
The logging API has changed in Celery 3.x. Update to it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 04 Jan 2014 13:39:39 -0600 |
parents | aeafbf3ecebf |
children |
line wrap: on
line diff
--- a/custom_search/tasks.py Fri Jan 03 19:11:05 2014 -0600 +++ b/custom_search/tasks.py Sat Jan 04 13:39:39 2014 -0600 @@ -5,10 +5,13 @@ from __future__ import absolute_import from celery import shared_task +from celery.utils.log import get_task_logger from django.conf import settings from queued_search.management.commands.process_search_queue import Command +logger = get_task_logger(__name__) + @shared_task def process_search_queue_task(): @@ -21,5 +24,4 @@ command = Command() command.execute() else: - logger = process_search_queue_task.get_logger() logger.warning("Search queue disabled; skipping processing")