1. A Django view timing middleware

    Just thought I'd share this quick middleware to log the time every views in a Django project takes to load.

    I haven't found any that did quite what I wanted on django-snippets so I put together one.

    Teh code to save somewhere and add to MIDDLEWARE_CLASSES:

    import logging ...