Class BaseStorage
This is the base backend for temporary message storage.
Declaration
class BaseStorage
source linkDocumentation
This is not a complete class; to be a usable storage backend, it must be
subclassed and the two methods ``_get`` and ``_store`` overridden.
Methods
▶ def __init__(self, request, *args, **kwargs) Overrides
This method is overriden in:
▶ def add(self, level, message, extra_tags='') Queue a message to be stored.
The message is only queued if it contained something and its level is
not less than the recording level (``self.level``).
▶ def update(self, response) Store all unread messages.
If the backend has yet to be iterated, store previously stored messages
again. Otherwise, only store messages added after the last iteration.
Subclasses
Reexports