Persistent logging for Plone objects
Project description
zopyx.plone.persistentlogger
zopyx.plone.persistentlogger supports persistent logging where the log data is stored on an arbitrary persistent Plone object (as annotation). Typical usecases are application specific logging e.g. for logging a history per content object directly in Plone rather then having a huge common log on the filesystem. The log entries are stored using object annotations.
Usage:
from zopyx.plone.persistentlogger.logger import IPersistentLogger def do_something(...): # ``context`` represents the current context object adapter = IPersistentLogger(context) adapter.log(u'this is a logging message') adapter.log(u'this is an error message', level='error') adapter.log(u'this is an error message', level='error', details='....')
details can be either a string or a Python datastructure like a dict, a list or a tuple. The logger will convert non-string data using the pprint module of Python into a nicely readable string. level can be an arbitrary string for indicating the severity of the logging message. The module does not perform any checking on the given message level. Sorting on level is accomplished only on the lexicographical ordering of the level values.
The logs can be view through-the-web through the URL http://host/path/to/object/@@persistent-log . The logs can be clear using the URL http://host/path/to/object/@@persistent-log-clear. Both URLs require the permission of modify the related object.
All logs can be searched, sorted and filtered individually based on the Datatables.net implementation.
Repository & issue tracker
Changelog
0.2.6 (2016-03-18)
i18n_domain missing in configure.zcml
0.2.4 (2016-02-02)
minor fixes
0.2.3 (2015-09-23)
some unittest cleanup
0.2.2 (2015-09-23)
log entries now store the original details value directly as entry key details_raw in addition to the pretty-printed representation in details. Note that details must be Python pickable.
0.2.1 (2015-09-17)
changed action permission for viewing the persistent log
0.2.0 (2015-09-10)
bugfixes, code cleanup
added “Persistent log” object action
0.1.0 (2015-08-31)
initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for zopyx.plone.persistentlogger-0.2.6.zip
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21630a5da7e84dd807f27b33d85e7afafaa38abaeabf90df9dc0b6d62363dd05 |
|
MD5 | 4627600f1109f419e6d0b4b3c580da66 |
|
BLAKE2b-256 | 856e011a6ea5186834975ddde1bd54878fb0ee6b94d7a50df11f7f4a67668766 |