Skip to content

Commit b4a9c19

Browse files
committed
make that 50 lines
1 parent 1c96545 commit b4a9c19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App/Fossa/Ficus/Analyze.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ runFicus ficusConfig = do
236236
now <- getCurrentTime
237237
let timestamp = formatTime defaultTimeLocale "%H:%M:%S.%3q" now
238238
let msg = "[" ++ timestamp ++ "] STDERR " <> line
239-
-- Keep at most the last 10 lines of stderr
240-
let newAcc = drop (max 0 (length acc - 9)) (acc <> [toText msg])
239+
-- Keep at most the last 50 lines of stderr
240+
let newAcc = drop (max 0 (length acc - 49)) (acc <> [toText msg])
241241
loop newAcc
242242
loop []
243243

0 commit comments

Comments
 (0)