Fix analytics logging

The analytics change PR adjusted the logging for awx.analytics,
which solved the issue, but should have used the targeted awx.main.analytics.

Also flip a couple of loggers to use the regular awx.analytics (awx analytics)
logger instead of awx.main.analytics (the automation anayltics task system).
This commit is contained in:
Bill Nottingham
2020-09-17 13:14:14 -04:00
parent aceb8229ba
commit 18c27437b7
3 changed files with 8 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ from awx.api.generics import (
)
logger = logging.getLogger('awx.main.analytics')
logger = logging.getLogger('awx.analytics')
class MetricsView(APIView):