~~~~~~~~~~~~~~~~~~~
- Reverted back to `print()`-ing by default. Set
``FALLBACK_STORAGE_LOGGING`` to ``True`` if ``http_fallback_storage``
should use the ``logging`` module instead. The reason for this is that
the ``logging`` behavior is a bit less obvious in that the reason for
a hanging development server is only visible if ``LOGGING`` is
configured correctly (which isn't hard to do, but still is something
that is overlooked too often).
- Added timeouts to downloads.
- Added the ``FALLBACK_STORAGE_SKIP`` setting which allows specifying a
regular expression which, if it matches the filename, skips the fallback.
If set to ``FALLBACK_STORAGE_SKIP = r'^test$'``, this avoids problems
introduced e.g. by `easy-thumbnails
<https://github.com/SmileyChris/easy-thumbnails/blob/c4483dc44cb748749df420d9cd1f57fb4fac469b/easy_thumbnails/utils.pyL67>`_.