diff --git a/metagpt/utils/file.py b/metagpt/utils/file.py index 84b2f8aeb..5aca2a0e5 100644 --- a/metagpt/utils/file.py +++ b/metagpt/utils/file.py @@ -35,7 +35,7 @@ class File: full_path = root_path / filename async with aiofiles.open(full_path, mode="wb") as writer: await writer.write(content) - logger.info(f"Successfully write docx: {full_path}") + logger.info(f"Successfully write file: {full_path}") return full_path except Exception as e: logger.error(f"Error writing file: {e}")