diff options
| author | Dax Raad <[email protected]> | 2025-07-03 18:53:17 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-07-03 19:29:51 -0400 |
| commit | 3bc238b58bfe26909ff6854276053e817af69e53 (patch) | |
| tree | c0c566bea0d838fb69a6d5c29fe6a30b0c610b32 | |
| parent | b8de69dceda9486d4cc4bb75738238012f58f197 (diff) | |
| download | opencode-3bc238b58bfe26909ff6854276053e817af69e53.tar.gz opencode-3bc238b58bfe26909ff6854276053e817af69e53.zip | |
wip: logs
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/opencode/src/cli/cmd/tui.ts b/packages/opencode/src/cli/cmd/tui.ts index 04e90978e..5cdda83ce 100644 --- a/packages/opencode/src/cli/cmd/tui.ts +++ b/packages/opencode/src/cli/cmd/tui.ts @@ -9,6 +9,7 @@ import fs from "fs/promises" import { Installation } from "../../installation" import { Config } from "../../config/config" import { Bus } from "../../bus" +import { Log } from "../../util/log" export const TuiCommand = cmd({ command: "$0 [project]", @@ -57,6 +58,9 @@ export const TuiCommand = cmd({ cwd = process.cwd() cmd = [binary] } + Log.Default.info("tui", { + cmd, + }) const proc = Bun.spawn({ cmd: [...cmd, ...process.argv.slice(2)], cwd, |
