In buildExecutor.js:_appendLog (line 267), the in-memory log buffer is capped at 2000 lines using entry.lines.shift() to drop the oldest entry. Subscribers who connected from the beginning already received those dropped lines. Subscribers who connect late (e.g. on page refresh mid-build) will receive a truncated log starting from whatever line 1 currently is, with no indication that earlier lines were dropped.
In
buildExecutor.js:_appendLog(line 267), the in-memory log buffer is capped at 2000 lines usingentry.lines.shift()to drop the oldest entry. Subscribers who connected from the beginning already received those dropped lines. Subscribers who connect late (e.g. on page refresh mid-build) will receive a truncated log starting from whatever line 1 currently is, with no indication that earlier lines were dropped.