changes the file_logger.txt to .log

pull/5177/head^2
SwiftyOS 2023-09-13 12:19:26 +02:00
parent 9eb01d85a3
commit ab26c07296
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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 ")

View File

@ -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