refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions
+8 -8
View File
@@ -9,16 +9,16 @@ read_when:
For a user-facing overview (CLI + Control UI + config), see [/logging](/logging).
Moltbot has two log “surfaces”:
OpenClaw has two log “surfaces”:
- **Console output** (what you see in the terminal / Debug UI).
- **File logs** (JSON lines) written by the gateway logger.
## File-based logger
- Default rolling log file is under `/tmp/moltbot/` (one file per day): `moltbot-YYYY-MM-DD.log`
- Default rolling log file is under `/tmp/openclaw/` (one file per day): `openclaw-YYYY-MM-DD.log`
- Date uses the gateway host's local timezone.
- The log file path and level can be configured via `~/.clawdbot/moltbot.json`:
- The log file path and level can be configured via `~/.openclaw/openclaw.json`:
- `logging.file`
- `logging.level`
@@ -28,7 +28,7 @@ The Control UI Logs tab tails this file via the gateway (`logs.tail`).
CLI can do the same:
```bash
moltbot logs --follow
openclaw logs --follow
```
**Verbose vs. log levels**
@@ -72,7 +72,7 @@ The gateway prints WebSocket protocol logs in two modes:
### WS log style
`moltbot gateway` supports a per-gateway style switch:
`openclaw gateway` supports a per-gateway style switch:
- `--ws-log auto` (default): normal mode is optimized; verbose mode uses compact output
- `--ws-log compact`: compact output (paired request/response) when verbose
@@ -83,13 +83,13 @@ Examples:
```bash
# optimized (only errors/slow)
moltbot gateway
openclaw gateway
# show all WS traffic (paired)
moltbot gateway --verbose --ws-log compact
openclaw gateway --verbose --ws-log compact
# show all WS traffic (full meta)
moltbot gateway --verbose --ws-log full
openclaw gateway --verbose --ws-log full
```
## Console formatting (subsystem logging)