Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: log line with reserved name keyword #7696

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: log line with reserved name keyword
  • Loading branch information
ArzelaAscoIi committed May 14, 2024
commit ddb9f0d93128fbd594ef4dcb5412777e92daf17d
1 change: 0 additions & 1 deletion haystack/core/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,6 @@ def run(self, word: str):
},
) as span:
span.set_content_tag("haystack.component.input", last_inputs[name])
logger.info("Running component {name}", name=name)
logger.info("Running component {component_name}", component_name=name)
res = comp.run(**last_inputs[name])
self.graph.nodes[name]["visits"] += 1
Expand Down
Loading