View build & runtime logs
Goal: See what your app printed during build and at runtime.
Prerequisites:
- An app with at least one deployment.
Build logs
Section titled “Build logs”- Open the app and go to Deployments.
- Click a deployment.
- The Build logs panel streams the build in real time. After completion you can scroll through the full log.
Runtime logs
Section titled “Runtime logs”- From the app detail page, open the Logs tab.
- The panel streams the running container’s stdout and stderr.
- Use the Pause button to freeze scrolling, and Resume to follow the tail again.
Verify
Section titled “Verify”- Running
console.log(...)orprint(...)in your app produces a line in the Runtime logs panel within seconds.
- Build logs are stored in Uploy’s database and kept alongside their deployment row indefinitely (subject to deployment retention).
- Runtime logs are streamed live from the running container’s stdout/stderr — there is no centralised log store yet, so historical lines older than the current container restart are not retrievable. Centralised retention is on the Phase 5 hardening roadmap (see
docs/known-technical-debt.md).