We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c96545 commit b4a9c19Copy full SHA for b4a9c19
src/App/Fossa/Ficus/Analyze.hs
@@ -236,8 +236,8 @@ runFicus ficusConfig = do
236
now <- getCurrentTime
237
let timestamp = formatTime defaultTimeLocale "%H:%M:%S.%3q" now
238
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])
+ -- Keep at most the last 50 lines of stderr
+ let newAcc = drop (max 0 (length acc - 49)) (acc <> [toText msg])
241
loop newAcc
242
loop []
243
0 commit comments