Files
dify-plugin-sdks/python/dify_plugin/logger_format.py
T
Yeuoly eb4b0f2a3b init
2024-07-10 17:56:01 +08:00

14 lines
375 B
Python

import json
import logging
class DifyPluginLoggerFormatter(logging.Formatter):
def format(self, record: logging.LogRecord) -> str:
return json.dumps({
'event': 'log',
'data': {
'level': record.levelname,
'message': record.getMessage(),
'timestamp': record.created,
}
})