소스 검색

Fix: ValueError: Formatting field not found in record: 'req_id' (#18327)

tags/1.3.0
Ethan 6 달 전
부모
커밋
523efbfea5
No account linked to committer's email address
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4
    1
      api/extensions/ext_logging.py

+ 4
- 1
api/extensions/ext_logging.py 파일 보기

@@ -26,9 +26,12 @@ def init_app(app: DifyApp):

# Always add StreamHandler to log to console
sh = logging.StreamHandler(sys.stdout)
sh.addFilter(RequestIdFilter())
log_handlers.append(sh)

# Apply RequestIdFilter to all handlers
for handler in log_handlers:
handler.addFilter(RequestIdFilter())

logging.basicConfig(
level=dify_config.LOG_LEVEL,
format=dify_config.LOG_FORMAT,

Loading…
취소
저장