Skip to content

Commit 42bbe5d

Browse files
author
mmiscool
committed
build: Fix endless recursion in debugLog function
1 parent b6b7707 commit 42bbe5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mergeTools/languages/javascript/javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,6 @@ export class javascriptManipulator {
506506

507507
async function debugLog(...args) {
508508
if (debug) {
509-
debugLog(...args);
509+
console.log(...args);
510510
}
511511
}

0 commit comments

Comments
 (0)