Metadata-Version: 2.1
Name: zLOG
Version: 3.1
Summary: A general logging facility
Home-page: https://github.com/zopefoundation/zLOG
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Zope :: 2
Requires-Dist: ZConfig (>=3.4)
Provides-Extra: test
Requires-Dist: zope.testrunner ; extra == 'test'

.. image:: https://github.com/zopefoundation/zLOG/workflows/tests/badge.svg
        :target: https://github.com/zopefoundation/zLOG/actions?query=workflow%3Atests

.. image:: https://coveralls.io/repos/github/zopefoundation/zLOG/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zLOG?branch=master

.. image:: https://img.shields.io/pypi/v/zLOG.svg
        :target: https://pypi.org/project/zLOG/
        :alt: Current version on PyPI

.. image:: https://img.shields.io/pypi/pyversions/zLOG.svg
        :target: https://pypi.org/project/zLOG/
        :alt: Supported Python versions

``zLOG``
========

This package provides a general logging facility that, at this point,
is just a small shim over Python's logging module.  Therefore, unless
you need to support a legacy package from the Zope 2 world, you're
probably better off using Python's logging module.


Changelog
=========

3.1 (2020-11-18)
----------------

- Add support for Python 3.6 up to 3.9.

- Drop support for Python 3.3 and 3.4.

- Flake8 the code.


3.0 (2016-04-03)
----------------

- Add coverage testing.

- Add Python 3.3 - 3.5 compatibility.

- Declare currently-supported Python versions, and test them.

- Normalize package structure (``README.rst``, ``CHANGES.rst``). Synthesize
  package description from README.rst and CHANGES.rst.

- Use nose for testing instead of zope.testrunner and test
  for 100% test coverage.

2.12.0 (2012-08-30)
-------------------

- Rely on refactored base class from ``ZConfig`` for testing logging.


