boe logs
The logs command prints the Built On Envoy CLI logs to stdout. By default, it prints all log entries from the current session log file.
Use --follow to continuously stream new log entries as they are written,
similar to tail -f. Use --tail to limit output to the most recent N lines.
Examples
Print all logs:
boe logs
Print the last 50 log lines:
boe logs --tail 50
Follow the log output in real time:
boe logs --follow
Show the last 20 lines and continue following:
boe logs --follow --tail 20
Usage details
boe logs [flags]
boe logs --help
Flags
| Name | Description | Type | Default | Env Var | Required |
|---|---|---|---|---|---|
-f, --follow |
Follow the log output (like tail -f). | bool |
- | - | No |
-t, --tail |
Number of recent log lines to show. Defaults to 20 when –follow is set, 0 (all lines) otherwise. | int |
- | - | No |