sota logs
View build and runtime logs for the current project.
Usage
sota logs
sota logs -f
Options
| Flag | Description |
|---|---|
-f, --follow | Stream logs in real-time |
Examples
View recent logs:
$ sota logs
[build] Detecting framework... Next.js
[build] Installing dependencies...
[build] Building application...
[build] Image built: sha256:abc123
[deploy] Starting container...
[deploy] Health check passed
[deploy] Live at https://my-app.sota.io
Follow logs in real-time:
$ sota logs -f
[runtime] Server listening on port 8080
[runtime] GET / 200 12ms
[runtime] GET /api/health 200 1ms
Press Ctrl+C to stop following.
Log Types
| Type | Description |
|---|---|
build | Output from the build process (npm install, framework build) |
deploy | Container lifecycle events (start, health check, swap) |
runtime | Application stdout/stderr from the running container |