We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f440f26 commit 38ce68fCopy full SHA for 38ce68f
1 file changed
‎src/ledgermind/server/cli.py‎
@@ -902,7 +902,8 @@ def sync_transcript_history(bridge, transcript_path: str) -> set:
902
continue
903
try:
904
entry = json.loads(line)
905
- except:
+ except json.JSONDecodeError as e:
906
+ global_console.print(f"[yellow]Warning: Failed to parse history line as JSON: {e}[/yellow]")
907
908
909
msg_id = entry.get("uuid") or entry.get("messageId") or entry.get("id")
0 commit comments