diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e88df1c3d..5b6d540f5a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/cli/logs.md b/docs/cli/logs.md index 4b40ed22369..6c02911621c 100644 --- a/docs/cli/logs.md +++ b/docs/cli/logs.md @@ -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. diff --git a/src/cli/logs-cli.ts b/src/cli/logs-cli.ts index 7282bdcdb36..6c8222fa5cf 100644 --- a/src/cli/logs-cli.ts +++ b/src/cli/logs-cli.ts @@ -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", () =>