From b7a460eb5fb34fa38d21954023de6baa2740e144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Troed=20S=C3=A5ngberg?= Date: Sun, 14 Jun 2026 19:32:05 +0200 Subject: [PATCH] release: v1.0.7 - enable debug logging --- package.json | 2 +- tui.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6e2e424..eca0a78 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@troed/oc-ls-stats", - "version": "1.0.5", + "version": "1.0.7", "type": "module", "exports": { "./tui": { diff --git a/tui.tsx b/tui.tsx index 14cffe9..dc59734 100644 --- a/tui.tsx +++ b/tui.tsx @@ -3,7 +3,7 @@ import type { TuiPlugin, TuiPluginModule } from "@opencode-ai/plugin/tui" import { createMemo, createSignal } from "solid-js" import { appendFileSync } from "fs" -const DEBUG_ENABLED = false +const DEBUG_ENABLED = true const DEBUG_LOG = "/tmp/oc-ls-stats-debug.log" function debug(...args: unknown[]) { if (!DEBUG_ENABLED) return