[BUGFIX] local_doc_qa.py line 172: logging have no end args. (#323)

This commit is contained in:
RainGather 2023-05-12 07:45:57 +08:00 committed by GitHub
parent dcf6e4ffeb
commit f173d8b6b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class LocalDocQA:
if len(failed_files) > 0:
logger.info("以下文件未能成功加载:")
for file in failed_files:
logger.info(file, end="\n")
logger.info(f"{file}\n")
else:
docs = []