From ab26c07296fc4cd21a6b77730e13d5140aa4af5a Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Wed, 13 Sep 2023 12:19:26 +0200 Subject: [PATCH] changes the file_logger.txt to .log --- autogpts/autogpt/autogpt/commands/file_operations.py | 2 +- autogpts/autogpt/autogpt/workspace/workspace.py | 2 +- autogpts/autogpt/tests/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/autogpts/autogpt/autogpt/commands/file_operations.py b/autogpts/autogpt/autogpt/commands/file_operations.py index 1750dbde7..c800499a1 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 76cc351bb..125e67407 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 05d0f2561..db35120e3 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