mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 18:35:29 -04:00
14 lines
375 B
Python
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,
|
|
}
|
|
}) |