Encode logs to JSON format
Project description
KODE Logger
Usage example
import kode_logger
logger = kode_logger.create_json('my-context', tags=['tag1', 'tag2'], extra={'common_variable': 'value'})
logger.warning('hello', extra={
'my_variable': 'value'
})
Example of produced log message
{
"@timestamp": "2019-10-22T11:11:42.133Z",
"message": "hello",
"level": "WARNING",
"pid": 40110,
"context": "my-context",
"tags": ["tag1", "tag2"],
"extra": {
"func_name": "example",
"line": 5,
"path": "file.py",
"process_name": "MainProcess",
"thread_name": "MainThread",
"common_variable": "value",
"my_variable": "value"
}
}
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
kode_logger-0.0.7.tar.gz
(2.4 kB
view hashes)
Built Distribution
Close
Hashes for kode_logger-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50fc0fd3436ad39c9025f2ed38c650068e168344a7974acd2368784024f860e7 |
|
MD5 | 7c47818f9ce655dc0443c9fd7cafdc22 |
|
BLAKE2b-256 | ffe4b0e6b581d7025306c5c93020b5c05751ae327756e5b73c7f554349538df3 |