Print the build log
Print the log output for a single build.
Required flags: --app ID (or BITRISE_APP_ID env var)
Argument: BUILD_ID the unique ID of the build
Flags: --wait wait for the build to finish before printing the log; useful when the build is still in-progress. Ctrl-C detaches without affecting the running build. Exit status reflects log retrieval, not the build outcome — use 'build watch' to gate on build success/failure. --interval DURATION polling interval when --wait is active (default 3s)
Note: --output is ignored — logs are streamed as raw text. Pipe to other tools or redirect to a file as needed.
bitrise-cli build log BUILD_ID [flags]
bitrise-cli build log --app my-app-id <build-id>
bitrise-cli build log --app my-app-id <build-id> --wait
bitrise-cli build log --app my-app-id <build-id> --wait --interval 10s
bitrise-cli build log --app my-app-id <build-id> > build.log
-h, --help help for log
--interval duration polling interval when --wait is active (default 3s)
--wait wait for the build to finish before printing the log
--app string app ID (or set BITRISE_APP_ID)
--no-color disable ANSI colors (NO_COLOR env is also honored)
-o, --output string output format: human|json (default "human")
-q, --quiet suppress non-error diagnostic messages
--theme string color theme: auto|dark|light|none (default "auto"; overrides terminal background detection)
- bitrise-cli build - Trigger, list, and inspect builds