File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
ghcide/src/Development/IDE/Core Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ data Log
183
183
| LogLoadingHieFileFail ! FilePath ! SomeException
184
184
| LogLoadingHieFileSuccess ! FilePath
185
185
| LogTypecheckedFOI ! NormalizedFilePath
186
- | LogDependencies ! NormalizedFilePath [FilePath ]
187
186
deriving Show
188
187
189
188
instance Pretty Log where
@@ -208,11 +207,6 @@ instance Pretty Log where
208
207
<+> " the HLS version being used, the plugins enabled, and if possible the codebase and file which"
209
208
<+> " triggered this warning."
210
209
]
211
- LogDependencies nfp deps ->
212
- vcat
213
- [ " Add dependency" <+> pretty (fromNormalizedFilePath nfp)
214
- , nest 2 $ pretty deps
215
- ]
216
210
217
211
templateHaskellInstructions :: T. Text
218
212
templateHaskellInstructions = " https://haskell-language-server.readthedocs.io/en/latest/troubleshooting.html#static-binaries"
@@ -722,7 +716,7 @@ loadGhcSession recorder ghcSessionDepsConfig = do
722
716
itExists <- getFileExists nfp
723
717
when itExists $ void $ do
724
718
use_ GetPhysicalModificationTime nfp
725
- logWith recorder Logger. Info $ LogDependencies file deps
719
+
726
720
mapM_ addDependency deps
727
721
728
722
let cutoffHash = LBS. toStrict $ B. encode (hash (snd val))
You can’t perform that action at this time.
0 commit comments