diff --git a/generic_executor.py b/generic_executor.py index c3b64a5..ff3275b 100644 --- a/generic_executor.py +++ b/generic_executor.py @@ -288,7 +288,7 @@ def update_properties(user: UserRecord, name: str, props: list[tuple[str, str]]) errors.append(message) if len(errors) > 0: return HTTPStatus.IM_A_TEAPOT, str(errors) - file_manager.log_action(user.uid, name, "UpdateProperties") + file_manager.log_action(user.uid, name, "UpdateProperties", str(props)) return HTTPStatus.OK, f"Successfully updated server '{name}'."