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-1.0.4.tar.gz
(3.0 kB
view hashes)
Built Distribution
Close
Hashes for kode_logger-1.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 226a052e605ec21c2bbcf92e70e5dc9272370f456bec5ad566779454b0e836ef |
|
MD5 | fcd17f66c5d32af7c64b9025436ba9ee |
|
BLAKE2b-256 | 5e3988b81ee061896caba11cfc1e053e2954c3ad64303a7ce588b6d461cb900d |