From 569d34b0a93999c14b712176e86f0ad743c7ee8f Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Thu, 16 Apr 2026 06:21:00 +0000 Subject: [PATCH] lower startup verbosity for git binary fingerprint log. switch the git binary fingerprint message to debug level and keep the chevron log prefix for consistency with action logs. Made-with: Cursor --- utils/gitAuth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/gitAuth.ts b/utils/gitAuth.ts index 473d808..c95cb8f 100644 --- a/utils/gitAuth.ts +++ b/utils/gitAuth.ts @@ -55,7 +55,7 @@ export function resolveGit(): void { const resolvedPath = realpathSync(whichPath); const sha256 = hashFile(resolvedPath); gitBinary = { path: resolvedPath, sha256 }; - log.info(`git binary: ${resolvedPath} (sha256: ${sha256.slice(0, 12)}...)`); + log.debug(`ยป git binary: ${resolvedPath} (sha256: ${sha256.slice(0, 12)}...)`); } function verifyGitBinary(): string {