Skip to content

Commit 77db5e2

Browse files
committed
Reverted TaskPipelineNode logger call to debug
1 parent 08b46ff commit 77db5e2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/neo4j_genai/experimental/pipeline/pipeline.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ async def execute(self, **kwargs: Any) -> RunResult | None:
119119
if the task run successfully, None if the status update
120120
was unsuccessful.
121121
"""
122-
logger.info(f"Running component {self.name}")
123-
logger.debug(f"Component {self.name} arguments: {kwargs}")
122+
logger.debug(f"Running component {self.name} with {kwargs}")
124123
start_time = default_timer()
125124
try:
126125
await self.set_status(RunStatus.RUNNING)
@@ -134,7 +133,7 @@ async def execute(self, **kwargs: Any) -> RunResult | None:
134133
result=component_result,
135134
)
136135
end_time = default_timer()
137-
logger.info(f"Component {self.name} finished in {end_time - start_time}s")
136+
logger.debug(f"Component {self.name} finished in {end_time - start_time}s")
138137
return run_result
139138

140139
def validate_inputs_config(self, input_data: dict[str, Any]) -> None:

0 commit comments

Comments
 (0)