Your project description goes here
Project description
Your project description goes here
Documentation
The full documentation is at https://frame_logging.readthedocs.io.
Quickstart
Install Frame Logging:
pip install frame_logging
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'frame_logging.apps.FrameLoggingConfig',
...
)
Create a class to format your extra logging kwargs
#
class FrameFormatterExample(FrameFormatter):
# format methods
@classmethod
def get_format_behaviour(cls):
return OrderedDict([
('customer_id', cls.format_customer_id),
])
@classmethod
def format_customer_id(cls, customer_id):
return "customer_id={}".format(customer_id)
# then if you need to, you can add new method to transform extra kwargs
# transform methods
@classmethod
def get_transform_kwargs_methods(cls):
return {
'order': cls.transform_order,
}
@classmethod
def transform_order(cls, order, **kwargs):
kwargs['customer_id'] = order.customer['id']
return kwargs
Configure frame loggin in your settings.py
# mandatory, if you do not priovide a formatter the app will crash
FRAME_FORMATTER=FrameFormatterExample()
# optionnal, default = ' - '
FRAME_SEPARATOR='+'
Use it:
import frame_logging.log as log
class Order(object):
def __init__(self):
self.customer = {'id': 1}
log.info('Renewed contract %s', 'test', order=order)
# 'Renewed contract test - customer_id=1'))
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.1.0 (2017-10-26)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file frame_logging-0.2.1.tar.gz.
File metadata
- Download URL: frame_logging-0.2.1.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bb97faf0da1535a44dcd6ae29d5a4e91177642b0d673da11904f6ea442ec97f
|
|
| MD5 |
556391696e5a0a08f76e4cdb4ae30be7
|
|
| BLAKE2b-256 |
4b8be60c1c7aaa8475ee33227c02f472500e739bc5a9bbe60978e70d511de90b
|
File details
Details for the file frame_logging-0.2.1-py2.py3-none-any.whl.
File metadata
- Download URL: frame_logging-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c701e8862be9d9977cfe9eefa7020795791360605ad7906fe7389c65f5a3ae
|
|
| MD5 |
89be9097f66812e317924818edf3814d
|
|
| BLAKE2b-256 |
387d43e6a00e443e0595609562a7dcf689450371ae0d76a2fdc15d8723a7c3fe
|