Metadata-Version: 2.1
Name: skasip-logging
Version: 1.0.12
Summary: SIP logging module.
Home-page: https://github.com/SKA-ScienceDataProcessor/integration-prototype/tree/master/sip/platform/logging
Author: SKA SDP SIP team.
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown

# SIP logging module

Provides a function for initialising the SIP logger. This uses a custom
logging formatter class which prints log messages with microsecond timestamps. 

Usage:

```python
import logging
from sip_logging import init_logger


def foo():
    log = logging.getLogger('sip.foo')
    log.info('hello world!')


if __name__ == '__main__':
    init_logger()
    foo()
```


