crush logs
View Crush application logs.
Usage
bash
# Print the last 1000 lines
crush logs
# Print the last N lines
crush logs --tail 500
crush logs -t 500
# Follow logs in real time
crush logs --follow
crush logs -fLog Location
Logs are stored in ./.crush/logs/crush.log relative to the project root.
Debug Logging
For more verbose output, enable debug logging:
bash
# Via flag
crush --debug
# Via config
crush logs --followWith debug logging enabled, Crush logs additional information about LSP connections, MCP server interactions, tool calls, and model requests.
You can also enable LSP-specific debug logging:
json
{
"$schema": "https://charm.land/crush.json",
"options": {
"debug": true,
"debug_lsp": true
}
}