Skip to content

Commit

Permalink
Merge pull request #2391 from gergoerdi/T1956
Browse files Browse the repository at this point in the history
Don't print `LIQUID` banner in `--quiet` mode #1956
  • Loading branch information
facundominguez authored Oct 17, 2024
2 parents c77a09b + 500e9dc commit e7d2d00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion liquidhaskell-boot/src/Language/Haskell/Liquid/UX/CmdLine.hs
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,8 @@ reportResult logResultFull cfg targets out = do
let outputResult = resDocs tidy cr
-- For now, always print the \"header\" with colours, irrespective to the logger
-- passed as input.
liftIO $ printHeader (colorResult r) (orHeader outputResult)
when (loggingVerbosity cfg >= Normal) $
liftIO $ printHeader (colorResult r) (orHeader outputResult)
logResultFull outputResult
where
tidy :: F.Tidy
Expand Down

0 comments on commit e7d2d00

Please sign in to comment.