Skip to content
Open
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
5 changes: 5 additions & 0 deletions holmes/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1265,6 +1265,11 @@ def get_bottom_toolbar():
logging.error("An error occurred during interactive mode:", exc_info=e)
console.print(f"[bold {ERROR_COLOR}]Error: {e}[/bold {ERROR_COLOR}]")

# Print trace URL even on error for debugging
trace_url = tracer.get_trace_url()
if trace_url:
console.print(f"🔍 View trace: {trace_url}")

console.print(
f"[bold {STATUS_COLOR}]Exiting interactive mode.[/bold {STATUS_COLOR}]"
)
Loading