├── .githooks └── pre-commit ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── install_supervisor ├── pylintrc ├── requirements.txt ├── setup.py ├── supervisor_logging └── __init__.py ├── test_requirements.txt └── tests ├── __init__.py ├── messages ├── supervisord.conf └── test_supervisor_logging.py /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/README.md -------------------------------------------------------------------------------- /install_supervisor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/install_supervisor -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/setup.py -------------------------------------------------------------------------------- /supervisor_logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/supervisor_logging/__init__.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/tests/messages -------------------------------------------------------------------------------- /tests/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/tests/supervisord.conf -------------------------------------------------------------------------------- /tests/test_supervisor_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infoxchange/supervisor-logging/HEAD/tests/test_supervisor_logging.py --------------------------------------------------------------------------------