Updated utils to the latest version. This version of utils has less

logging at info level and as such no longer prints out the celery task
timing which are found to be use to find out if a tasks has been called
but also the timing for the task. Added an extra timing message for
celery tasks so that it can be determined if the these are less frequent
than the API calls and provide more useful information
This commit is contained in:
Richard Chapman
2018-02-05 14:58:02 +00:00
parent 4773e1b51b
commit 2d670e8cf0
3 changed files with 14 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ def create_app(application):
register_blueprint(application)
register_v2_blueprints(application)
# avoid circular imports by importing this file later 😬
# avoid circular imports by importing this file later
from app.commands import setup_commands
setup_commands(application)