From d566f20db1ee38f45383069f9089cc541dce43bf Mon Sep 17 00:00:00 2001 From: Ryan Culbertson Date: Tue, 28 Jan 2025 11:13:31 -0500 Subject: [PATCH] Remove debug code --- modal/_runtime/container_io_manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modal/_runtime/container_io_manager.py b/modal/_runtime/container_io_manager.py index 678c96da4f..9d4c9acbdf 100644 --- a/modal/_runtime/container_io_manager.py +++ b/modal/_runtime/container_io_manager.py @@ -181,9 +181,8 @@ def _args_and_kwargs(self) -> tuple[tuple[Any, ...], dict[str, list[Any]]]: def call_finalized_function(self) -> Any: logger.debug(f"Starting input {self.input_ids}") args, kwargs = self._args_and_kwargs() - print(f"--- Calling function {args} {kwargs}") res = self.finalized_function.callable(*args, **kwargs) - logger.debug(f"Finished input {self.input_ids} {res}") + logger.debug(f"Finished input {self.input_ids}") return res def validate_output_data(self, data: Any) -> list[Any]: