fix: do not output the structured line marker in log dumps

This commit is contained in:
gmega 2025-01-24 09:51:54 -03:00
parent f7b443239b
commit d4ddcdec9d
No known key found for this signature in database
GPG Key ID: 6290D34EAD824B18

View File

@ -118,7 +118,7 @@ def cmd_dump_single_experiment(source: LogSource, group_id: str, experiment_id:
for _, node_id, raw_line in log_source.logs(
group_id=group_id, experiment_id=experiment_id
):
print(f"<<{node_id}>> {raw_line}", file=sys.stdout)
print(f"[[{node_id}]] {raw_line}", file=sys.stdout)
def cmd_run_agent(agents: Dict[str, AgentBuilder], args):