Skip to content

Commit 4157f15

Browse files
committed
Coerce pattern to a string for debug log
1 parent 0ff7472 commit 4157f15

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
@@ -104,7 +104,7 @@ export function createSocketBranchParser(
104104
): SocketBranchParser {
105105
const pattern = getSocketBranchPattern(options)
106106
return function parse(branch: string): SocketBranchParseResult | null {
107-
debugFn('pattern', pattern)
107+
debugFn('pattern', pattern.toString())
108108
const match = pattern.exec(branch)
109109
if (!match) {
110110
return null

0 commit comments

Comments
 (0)