.. image:: https://github.com/zopefoundation/Products.SiteErrorLog/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/Products.SiteErrorLog/actions/workflows/tests.yml
.. image:: https://coveralls.io/repos/github/zopefoundation/Products.SiteErrorLog/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/Products.SiteErrorLog?branch=master
.. image:: https://img.shields.io/pypi/v/Products.SiteErrorLog.svg
:target: https://pypi.org/project/Products.SiteErrorLog/
:alt: Current version on PyPI
.. image:: https://img.shields.io/pypi/pyversions/Products.SiteErrorLog.svg
:target: https://pypi.org/project/Products.SiteErrorLog/
:alt: Supported Python versions
Products.SiteErrorLog
=====================
The SiteErrorLog object is a valuable debugging aid. It records all exceptions
happening in its container and all subfolders as your site's code executes.
SiteErrorLog recorded errors are not persistent, they are stored in RAM and
thus disappear when the Zope process restarts.
Changelog
=========
6.0 (2023-02-01)
----------------
- Drop support for Python 2.7, 3.5, 3.6.
5.7 (2022-12-16)
----------------
- Fix insidious buildout configuration bug for tests against Zope 4.
- Add support for Python 3.11.
5.6 (2022-07-05)
----------------
- Add support for Python 3.10.
- Render date in addition to time in ZMI error log.
(`#31 <https://github.com/zopefoundation/Products.SiteErrorLog/pull/31>`_)
5.5 (2021-03-15)
----------------
- Add support for Python 3.9.
- Update configuration for version 5 of ``isort``
5.4 (2020-02-06)
----------------
- Log transient errors that can be re-tried as INFO only
(`#21 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/21>`_)
5.3 (2019-04-13)
----------------
- stricter flake8 configuration
- add badges and additional information links to package information
- Make sure Zope 4 ZMI shows no add dialog
(`#19 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/19>`_)
5.2 (2019-03-19)
----------------
- Ability to report problems caused by method calls (such as
``manage_delObjects``).
- Ability to report traversal problems.
(`#17 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/17>`_)
- Specify supported Python versions using ``python_requires`` in setup.py.
(`Zope#481 <https://github.com/zopefoundation/Zope/issues/481>`_)
- Add support for Python 3.8.
5.1 (2018-12-18)
----------------
- Flake8 the code.
- Ignored exception types no longer accidentally get converted to bytes and back
on Python 3.
(`#13 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/13>`_)
5.0 (2018-11-06)
----------------
- Drop support for Zope 2, require Zope >= 4.0b6 now.
- Add support for Python 3.5, 3.6 and 3.7.
- Drop `ZServer` dependency.
- Add ``IPubFailure`` event handler so it writes error log entries again.
- Bring back Application initialization (creation of `SiteErrorLog` in the
ZODB on first startup).
- Style forms for Bootstrap ZMI.
(`#12 <https://github.com/zopefoundation/Products.SiteErrorLog/pull/12>`_)
4.0 (2016-07-22)
----------------
- Add configure.zcml with deprecatedManageAddDelete directive.
3.0 (2016-07-19)
----------------
- Drop `test` and `zope212` setuptools extras.
- Add error event.
2.13.2 (2014-02-10)
-------------------
- Release as a separate package (previously in Zope2).
Raw data
{
"_id": null,
"home_page": "https://github.com/zopefoundation/Products.SiteErrorLog",
"name": "Products.SiteErrorLog",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "",
"author": "Zope Foundation and Contributors",
"author_email": "zope-dev@zope.dev",
"download_url": "https://files.pythonhosted.org/packages/c2/4c/13cf15d3d4d1e5fffc14eb6e7ed30dedb46ea7faaa02031c16756c26bc20/Products.SiteErrorLog-6.0.tar.gz",
"platform": null,
"description": ".. image:: https://github.com/zopefoundation/Products.SiteErrorLog/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/zopefoundation/Products.SiteErrorLog/actions/workflows/tests.yml\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/Products.SiteErrorLog/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/Products.SiteErrorLog?branch=master\n\n.. image:: https://img.shields.io/pypi/v/Products.SiteErrorLog.svg\n :target: https://pypi.org/project/Products.SiteErrorLog/\n :alt: Current version on PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/Products.SiteErrorLog.svg\n :target: https://pypi.org/project/Products.SiteErrorLog/\n :alt: Supported Python versions\n\n\nProducts.SiteErrorLog\n=====================\n\nThe SiteErrorLog object is a valuable debugging aid. It records all exceptions\nhappening in its container and all subfolders as your site's code executes.\n\nSiteErrorLog recorded errors are not persistent, they are stored in RAM and\nthus disappear when the Zope process restarts.\n\nChangelog\n=========\n\n6.0 (2023-02-01)\n----------------\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n5.7 (2022-12-16)\n----------------\n\n- Fix insidious buildout configuration bug for tests against Zope 4.\n\n- Add support for Python 3.11.\n\n\n5.6 (2022-07-05)\n----------------\n\n- Add support for Python 3.10.\n\n- Render date in addition to time in ZMI error log.\n (`#31 <https://github.com/zopefoundation/Products.SiteErrorLog/pull/31>`_)\n\n\n5.5 (2021-03-15)\n----------------\n\n- Add support for Python 3.9.\n\n- Update configuration for version 5 of ``isort``\n\n\n5.4 (2020-02-06)\n----------------\n\n- Log transient errors that can be re-tried as INFO only\n (`#21 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/21>`_)\n\n\n5.3 (2019-04-13)\n----------------\n\n- stricter flake8 configuration\n\n- add badges and additional information links to package information\n\n- Make sure Zope 4 ZMI shows no add dialog\n (`#19 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/19>`_)\n\n\n5.2 (2019-03-19)\n----------------\n\n- Ability to report problems caused by method calls (such as\n ``manage_delObjects``).\n\n- Ability to report traversal problems.\n (`#17 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/17>`_)\n\n- Specify supported Python versions using ``python_requires`` in setup.py.\n (`Zope#481 <https://github.com/zopefoundation/Zope/issues/481>`_)\n\n- Add support for Python 3.8.\n\n\n5.1 (2018-12-18)\n----------------\n\n- Flake8 the code.\n\n- Ignored exception types no longer accidentally get converted to bytes and back\n on Python 3.\n (`#13 <https://github.com/zopefoundation/Products.SiteErrorLog/issues/13>`_)\n\n5.0 (2018-11-06)\n----------------\n\n- Drop support for Zope 2, require Zope >= 4.0b6 now.\n\n- Add support for Python 3.5, 3.6 and 3.7.\n\n- Drop `ZServer` dependency.\n\n- Add ``IPubFailure`` event handler so it writes error log entries again.\n\n- Bring back Application initialization (creation of `SiteErrorLog` in the\n ZODB on first startup).\n\n- Style forms for Bootstrap ZMI.\n (`#12 <https://github.com/zopefoundation/Products.SiteErrorLog/pull/12>`_)\n\n\n4.0 (2016-07-22)\n----------------\n\n- Add configure.zcml with deprecatedManageAddDelete directive.\n\n3.0 (2016-07-19)\n----------------\n\n- Drop `test` and `zope212` setuptools extras.\n\n- Add error event.\n\n2.13.2 (2014-02-10)\n-------------------\n\n- Release as a separate package (previously in Zope2).\n",
"bugtrack_url": null,
"license": "ZPL 2.1",
"summary": "Error log for Zope.",
"version": "6.0",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "809e7c1401265e0fe238be09cd902db2830ce2f9cfa13ac053ca6986dfd02716",
"md5": "819580a768710bfd173f90f788999758",
"sha256": "e3880bf6faa01d829534f0ab6862aefc709d9b1e10c120a56ade197ee2c91af5"
},
"downloads": -1,
"filename": "Products.SiteErrorLog-6.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "819580a768710bfd173f90f788999758",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 18315,
"upload_time": "2023-02-01T10:19:09",
"upload_time_iso_8601": "2023-02-01T10:19:09.324246Z",
"url": "https://files.pythonhosted.org/packages/80/9e/7c1401265e0fe238be09cd902db2830ce2f9cfa13ac053ca6986dfd02716/Products.SiteErrorLog-6.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c24c13cf15d3d4d1e5fffc14eb6e7ed30dedb46ea7faaa02031c16756c26bc20",
"md5": "74967f067d86eb7144e7ef87ed9fb1aa",
"sha256": "4a202dc68ae111f19994c67c0f37235c8fb8a64c942c9b7a7903fef32badf87d"
},
"downloads": -1,
"filename": "Products.SiteErrorLog-6.0.tar.gz",
"has_sig": true,
"md5_digest": "74967f067d86eb7144e7ef87ed9fb1aa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 17367,
"upload_time": "2023-02-01T10:19:11",
"upload_time_iso_8601": "2023-02-01T10:19:11.145222Z",
"url": "https://files.pythonhosted.org/packages/c2/4c/13cf15d3d4d1e5fffc14eb6e7ed30dedb46ea7faaa02031c16756c26bc20/Products.SiteErrorLog-6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-02-01 10:19:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "zopefoundation",
"github_project": "Products.SiteErrorLog",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "products.siteerrorlog"
}