From 1f07951b88f8ddd906417076d0a48a2d07e6d9c2 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 18 Feb 2026 19:17:45 +0000 Subject: [PATCH] Remove excessive logging per line --- src/process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.ts b/src/process.ts index c1023f5..53c74b7 100644 --- a/src/process.ts +++ b/src/process.ts @@ -36,7 +36,7 @@ export async function* processPisStream(cfg: GeneralConfig, inputStream: Readabl if (!line.trim()) continue; const record = JSON.parse(line) as InputRecord; - log('DEBUG', `JSON Line Parsed: ${JSON.stringify(record)}`) + // log('DEBUG', `JSON Line Parsed: ${JSON.stringify(record)}`) const crsHash = XXH.h64(record.stops.join('|'), SEED); const tiplocStops = await mapStopsToTiploc(record.stops);