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
183183 | LogLoadingHieFileFail ! FilePath ! SomeException
184184 | LogLoadingHieFileSuccess ! FilePath
185185 | LogTypecheckedFOI ! NormalizedFilePath
186- | LogDependencies ! NormalizedFilePath [FilePath ]
187186 deriving Show
188187
189188instance Pretty Log where
@@ -208,11 +207,6 @@ instance Pretty Log where
208207 <+> " the HLS version being used, the plugins enabled, and if possible the codebase and file which"
209208 <+> " triggered this warning."
210209 ]
211- LogDependencies nfp deps ->
212- vcat
213- [ " Add dependency" <+> pretty (fromNormalizedFilePath nfp)
214- , nest 2 $ pretty deps
215- ]
216210
217211templateHaskellInstructions :: T. Text
218212templateHaskellInstructions = " https://haskell-language-server.readthedocs.io/en/latest/troubleshooting.html#static-binaries"
@@ -722,7 +716,7 @@ loadGhcSession recorder ghcSessionDepsConfig = do
722716 itExists <- getFileExists nfp
723717 when itExists $ void $ do
724718 use_ GetPhysicalModificationTime nfp
725- logWith recorder Logger. Info $ LogDependencies file deps
719+
726720 mapM_ addDependency deps
727721
728722 let cutoffHash = LBS. toStrict $ B. encode (hash (snd val))
You can’t perform that action at this time.
0 commit comments