Skip to content

Commit afce081

Browse files
committed
Fix debug namespace
1 parent a0f7240 commit afce081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/fix/git.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export async function gitCreateAndPushBranch(
236236
} = { __proto__: null, ...options } as GitCreateAndPushBranchOptions
237237
const stdioIgnoreOptions: SpawnOptions = { cwd, stdio: 'ignore' }
238238
try {
239-
debugFn('args', { branch, user, email, cwd, filepaths, commitMsg })
239+
debugFn('notice', { branch, user, email, cwd, filepaths, commitMsg })
240240
await gitEnsureIdentity(user, email, cwd)
241241
await spawn('git', ['checkout', '-b', branch], stdioIgnoreOptions)
242242
await spawn('git', ['add', ...filepaths], stdioIgnoreOptions)

0 commit comments

Comments
 (0)