mirror of https://github.com/openclaw/openclaw.git
fix(cli): drop logs --localTime alias noise
This commit is contained in:
parent
66ca5746ce
commit
f32214ea27
|
|
@ -7,7 +7,7 @@ Docs: https://docs.openclaw.ai
|
|||
### Changes
|
||||
|
||||
- Version alignment: bump manifests and package versions to `2026.2.10`; keep `appcast.xml` unchanged until the next macOS release cut.
|
||||
- CLI: add `openclaw logs --local-time` (plus `--localTime` compatibility alias) to display log timestamps in local timezone. (#13818) Thanks @xialonglee.
|
||||
- CLI: add `openclaw logs --local-time` to display log timestamps in local timezone. (#13818) Thanks @xialonglee.
|
||||
- Config: avoid redacting `maxTokens`-like fields during config snapshot redaction, preventing round-trip validation failures in `/config`. (#14006) Thanks @constansino.
|
||||
|
||||
## 2026.2.9
|
||||
|
|
|
|||
|
|
@ -25,4 +25,4 @@ openclaw logs --local-time
|
|||
openclaw logs --follow --local-time
|
||||
```
|
||||
|
||||
Use `--local-time` to render timestamps in your local timezone. `--localTime` is supported as a compatibility alias.
|
||||
Use `--local-time` to render timestamps in your local timezone.
|
||||
|
|
|
|||
|
|
@ -207,7 +207,6 @@ export function registerLogsCli(program: Command) {
|
|||
.option("--plain", "Plain text output (no ANSI styling)", false)
|
||||
.option("--no-color", "Disable ANSI colors")
|
||||
.option("--local-time", "Display timestamps in local timezone", false)
|
||||
.option("--localTime", "Alias for --local-time", false)
|
||||
.addHelpText(
|
||||
"after",
|
||||
() =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue