diff --git a/autogpts/autogpt/autogpt/commands/file_operations.py b/autogpts/autogpt/autogpt/commands/file_operations.py index 1750dbde..c800499a 100644 --- a/autogpts/autogpt/autogpt/commands/file_operations.py +++ b/autogpts/autogpt/autogpt/commands/file_operations.py @@ -112,7 +112,7 @@ def is_duplicate_operation( def log_operation( operation: Operation, file_path: Path, agent: Agent, checksum: str | None = None ) -> None: - """Log the file operation to the file_logger.txt + """Log the file operation to the file_logger.log Args: operation: The operation to log diff --git a/autogpts/autogpt/autogpt/workspace/workspace.py b/autogpts/autogpt/autogpt/workspace/workspace.py index 76cc351b..125e6740 100644 --- a/autogpts/autogpt/autogpt/workspace/workspace.py +++ b/autogpts/autogpt/autogpt/workspace/workspace.py @@ -147,7 +147,7 @@ class Workspace: @staticmethod def build_file_logger_path(workspace_directory: Path) -> Path: - file_logger_path = workspace_directory / "file_logger.txt" + file_logger_path = workspace_directory / "file_logger.log" if not file_logger_path.exists(): with file_logger_path.open(mode="w", encoding="utf-8") as f: f.write("File Operation Logger ") diff --git a/autogpts/autogpt/tests/conftest.py b/autogpts/autogpt/tests/conftest.py index 05d0f256..db35120e 100644 --- a/autogpts/autogpt/tests/conftest.py +++ b/autogpts/autogpt/tests/conftest.py @@ -71,7 +71,7 @@ def config(temp_plugins_config_file: str, mocker: MockerFixture, workspace: Work mocker.patch.multiple( config, workspace_path=workspace.root, - file_logger_path=workspace.get_path("file_logger.txt"), + file_logger_path=workspace.get_path("file_logger.log"), ) yield config