Is there a way to make cli tell what it is doing o...
# 🤖|ask-kapa
f
@microscopic-river-74022 Is there a way to make cli tell what it is doing or waiting for during deployment? It's not always clear what is going on from the logs
m
Please stand by @fresh-angle-76971 as I search the knowledge base. I normally take about 15 seconds or so. :wave:
---------------------- Short answer: partially. - You can stream live deploy logs to see ongoing activity: - All deploys:
garden logs
- Single deploy:
garden logs my-deploy
- Follow/stream:
garden logs my-deploy --follow
[[Using the CLI](); [Edge CLI guide]()]. - For deeper troubleshooting in Dev Mode (code sync), you can inspect the underlying Mutagen sync status via the helper script: - From project root:
.garden/mutagen/latest/mutagen.sh sync list
[[Code Sync troubleshooting]()]. - There isn’t currently a built-in “still building/deploying…” heartbeat in the CLI, but it’s a requested feature and considered feasible; likewise, exposing Mutagen sync status directly in the CLI is an open request. You may see periods with few/no messages during long-running steps. [[Still building logs](); [Expose mutagen status]()]. - If things seem stuck or unclear, you can generate a debug bundle: -
garden get debug-info
(supports
--format json|yaml
,
--include-project
) [[get debug-info](); [Docs-edge debug-info]()]. Note: There’s also an open request to surface failures more clearly in Bonsai/Garden Cloud command lists, which may help in the future. [[Show failures in commands]()]. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
message has been deleted
2 Views