Skip to content

Commit

Permalink
fix: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmu committed Apr 14, 2024
1 parent 49580f8 commit 4c16dae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/periscope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ export const periscope = () => {

spawnProcess.stdout.on('data', (data: Buffer) => {
const lines = data.toString().split('\n').filter(Boolean);
console.log("spawnProcess.stdout.on > lines:", lines);

for (const line of lines) {
const parsedLine = tryJsonParse<RgLine>(line);
Expand All @@ -261,7 +260,6 @@ export const periscope = () => {
colPos,
textResult
};
console.log(`spawnProcess.stdout.on`, Math.random());
searchResults.push(resultItem);
}
}
Expand Down

0 comments on commit 4c16dae

Please sign in to comment.