From 0ca10ec2f5b2fd69eedaf58f7971438f02452142 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 11 Aug 2025 21:52:05 -0400 Subject: [PATCH] ignore: log --- packages/opencode/src/snapshot/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/opencode/src/snapshot/index.ts b/packages/opencode/src/snapshot/index.ts index 0c8cc5e8..163fec37 100644 --- a/packages/opencode/src/snapshot/index.ts +++ b/packages/opencode/src/snapshot/index.ts @@ -43,6 +43,7 @@ export namespace Snapshot { } await $`git --git-dir ${git} add .`.quiet().cwd(app.path.cwd).nothrow() const hash = await $`git --git-dir ${git} write-tree`.quiet().cwd(app.path.cwd).nothrow().text() + log.info("tracking", { hash }) return hash.trim() }