Add exc_info=True to inspect command error logging (#2232)

Fixes #2231

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Adam Azzam 2025-10-24 18:20:45 -04:00 committed by GitHub
commit 69b273ee8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -772,6 +772,7 @@ async def inspect(
"server_spec": server_spec,
"error": str(e),
},
exc_info=True,
)
console.print(f"[bold red]✗[/bold red] Failed to inspect server: {e}")
sys.exit(1)