11 lines
418 B
Python
11 lines
418 B
Python
import logging
|
|
import logging.config
|
|
import json
|
|
ATTR_TO_JSON = ['created', 'filename', 'funcName', 'levelname', 'lineno', 'module', 'msecs', 'msg', 'name', 'pathname', 'process', 'processName', 'relativeCreated', 'thread', 'threadName']
|
|
class JsonFormatter:
|
|
def format(self, record):
|
|
obj = {attr: getattr(record, attr)
|
|
for attr in ATTR_TO_JSON}
|
|
return json.dumps(obj, indent=4)
|
|
|