diff options
| author | Aiden Cline <[email protected]> | 2025-11-30 00:26:46 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-11-30 00:32:43 -0600 |
| commit | 0f30115205d12087be6191fbc85186960a7227f5 (patch) | |
| tree | fa99a56d6d59ca7e819bb2e0ea9d2f536fcd79d2 | |
| parent | ae500ea01d9f521f848ad9fcf9ea7515cba11403 (diff) | |
| download | opencode-0f30115205d12087be6191fbc85186960a7227f5.tar.gz opencode-0f30115205d12087be6191fbc85186960a7227f5.zip | |
chore: cleanup
| -rw-r--r-- | packages/opencode/src/file/watcher.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/opencode/src/file/watcher.ts b/packages/opencode/src/file/watcher.ts index 4459d20e9..4adf721b9 100644 --- a/packages/opencode/src/file/watcher.ts +++ b/packages/opencode/src/file/watcher.ts @@ -47,7 +47,6 @@ export namespace FileWatcher { const subscribe: ParcelWatcher.SubscribeCallback = (err, evts) => { if (err) return for (const evt of evts) { - log.info("event", evt) if (evt.type === "create") Bus.publish(Event.Updated, { file: evt.path, event: "add" }) if (evt.type === "update") Bus.publish(Event.Updated, { file: evt.path, event: "change" }) if (evt.type === "delete") Bus.publish(Event.Updated, { file: evt.path, event: "unlink" }) @@ -83,7 +82,6 @@ export namespace FileWatcher { ) export function init() { - // if (!Flag.OPENCODE_EXPERIMENTAL_WATCHER) return state() } } |
