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 cd6f62b commit d54fd38Copy full SHA for d54fd38
exe/Rules.hs
@@ -38,6 +38,7 @@ import qualified Language.Haskell.LSP.Types as LSP
38
import Data.Aeson (ToJSON(toJSON))
39
import Development.IDE.Types.Logger (logDebug)
40
import Util
41
+import System.IO (hPutStrLn, stderr)
42
43
-- Prefix for the cache path
44
cacheDir :: String
@@ -122,6 +123,8 @@ createSession (ComponentOptions theOpts _) = do
122
123
124
cacheDir <- getCacheDir theOpts
125
126
+ hPutStrLn stderr $ "Interface files cache dir: " <> cacheDir
127
+
128
runGhc (Just libdir) $ do
129
dflags <- getSessionDynFlags
130
(dflags', _targets) <- addCmdOpts theOpts dflags
0 commit comments