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.
2 parents af257dc + 78fcfd6 commit c25daaaCopy full SHA for c25daaa
src/Stack/Build/Execute.hs
@@ -47,6 +47,7 @@ import qualified Data.Text.Encoding as T
47
import Data.Text.Encoding (encodeUtf8)
48
import Distribution.System (OS (Windows),
49
Platform (Platform))
50
+import Language.Haskell.TH (Loc(..))
51
import Network.HTTP.Client.Conduit (HasHttpManager)
52
import Path
53
import Path.IO
@@ -860,7 +861,7 @@ printBuildOutput excludeTHLoading level outH = void $ fork $
860
861
CB.sourceHandle outH
862
$$ CB.lines
863
=$ CL.filter (not . isTHLoading)
- =$ CL.mapM_ (logOtherN level . T.decodeUtf8)
864
+ =$ CL.mapM_ (monadLoggerLog (Loc "<unknown>" "<unknown>" "<unknown>" (0,0) (0,0)) "" level)
865
where
866
-- | Is this line a Template Haskell "Loading package" line
867
-- ByteString
0 commit comments