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
This commit is contained in:
Colin McDonnell
2026-04-16 06:21:00 +00:00
committed by pullfrog[bot]
parent a607ac29e1
commit 569d34b0a9
+1 -1
View File
@@ -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 {