Skip to content

Commit 5aa0da7

Browse files
committed
fix: make jsonl-reader quieter
1 parent 42c52df commit 5aa0da7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/common/jsonl-reader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export async function readJsonlFile<T>(
5454
currentLineSequence.push(line);
5555
}
5656
lineCount++;
57-
if (lineCount % 100000 === 0) {
57+
if (lineCount % 1000000 === 0) {
5858
logProgress();
5959
}
6060
}

0 commit comments

Comments
 (0)