# Build & Runtime Logs

> Inspect build steps and stream container runtime output.

- **Category**: Observe & Operate
- **Last Verified**: 2026-07-14

Logs are divided into two separate streams: Build Logs (compiling code and base images) and Runtime Logs (application container standard output/error).

## 1. Stream Runtime Logs

Stream logs in real-time as requests hit your container:

```bash
kubeletto logs my-service --follow --tail 100
```

## 2. Inspect Build Logs

Inspect latest build execution details:

```bash
kubeletto logs my-service --build --follow
```

## Log Retention

On the Free Plan, logs are stored for 24 hours. Upgraded tiers store logs up to 7 days.

