1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

use the proper logger for the callback receiver

This commit is contained in:
Ryan Petrello 2018-10-17 10:56:29 -04:00
parent 78c4d5005e
commit 53ae05094e
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -14,7 +14,7 @@ from awx.main.models import (JobEvent, AdHocCommandEvent, ProjectUpdateEvent,
from .base import BaseWorker
logger = logging.getLogger('awx.main.dispatch')
logger = logging.getLogger('awx.main.commands.run_callback_receiver')
class CallbackBrokerWorker(BaseWorker):