├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── docs ├── Makefile └── source │ ├── conf.py │ ├── handlers.rst │ ├── index.rst │ ├── levels_and_workflow.rst │ └── loggers.rst ├── logging2 ├── __init__.py ├── handlers │ ├── __init__.py │ ├── abc.py │ ├── files.py │ ├── sockets.py │ └── streaming.py ├── levels.py ├── loggers.py └── utils.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests ├── handlers ├── test_files.py ├── test_sockets.py └── test_streaming.py ├── test_levels.py └── test_loggers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/handlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/source/handlers.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/levels_and_workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/source/levels_and_workflow.rst -------------------------------------------------------------------------------- /docs/source/loggers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/docs/source/loggers.rst -------------------------------------------------------------------------------- /logging2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/__init__.py -------------------------------------------------------------------------------- /logging2/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/handlers/__init__.py -------------------------------------------------------------------------------- /logging2/handlers/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/handlers/abc.py -------------------------------------------------------------------------------- /logging2/handlers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/handlers/files.py -------------------------------------------------------------------------------- /logging2/handlers/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/handlers/sockets.py -------------------------------------------------------------------------------- /logging2/handlers/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/handlers/streaming.py -------------------------------------------------------------------------------- /logging2/levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/levels.py -------------------------------------------------------------------------------- /logging2/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/loggers.py -------------------------------------------------------------------------------- /logging2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/logging2/utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/setup.py -------------------------------------------------------------------------------- /tests/handlers/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/tests/handlers/test_files.py -------------------------------------------------------------------------------- /tests/handlers/test_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/tests/handlers/test_sockets.py -------------------------------------------------------------------------------- /tests/handlers/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/tests/handlers/test_streaming.py -------------------------------------------------------------------------------- /tests/test_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/tests/test_levels.py -------------------------------------------------------------------------------- /tests/test_loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vforgione/logging2/HEAD/tests/test_loggers.py --------------------------------------------------------------------------------