@@ -149,7 +149,7 @@ data Log
149
149
| LogLspStart [PluginId ]
150
150
| LogLspStartDuration ! Seconds
151
151
| LogShouldRunSubset ! Bool
152
- | LogOnlyPartialGhc92Support
152
+ | LogOnlyPartialGhc94Support
153
153
| LogSetInitialDynFlagsException ! SomeException
154
154
| LogService Service. Log
155
155
| LogShake Shake. Log
@@ -173,8 +173,8 @@ instance Pretty Log where
173
173
" Started LSP server in" <+> pretty (showDuration duration)
174
174
LogShouldRunSubset shouldRunSubset ->
175
175
" shouldRunSubset:" <+> pretty shouldRunSubset
176
- LogOnlyPartialGhc92Support ->
177
- " Currently, HLS supports GHC 9.2 only partially. See [issue #2982 ](https://github.com/haskell/haskell-language-server/issues/2982 ) for more detail."
176
+ LogOnlyPartialGhc94Support ->
177
+ " Currently, HLS supports GHC 9.4 only partially. See [issue #3190 ](https://github.com/haskell/haskell-language-server/issues/3190 ) for more detail."
178
178
LogSetInitialDynFlagsException e ->
179
179
" setInitialDynFlags:" <+> pretty (displayException e)
180
180
LogService log -> pretty log
@@ -353,9 +353,9 @@ defaultMain recorder Arguments{..} = withHeapStats (cmapWithPrio LogHeapStats re
353
353
, optRunSubset = runSubset
354
354
}
355
355
caps = LSP. resClientCapabilities env
356
- -- FIXME: Remove this after GHC 9.2 gets fully supported
357
- when (ghcVersion == GHC92 ) $
358
- log Warning LogOnlyPartialGhc92Support
356
+ -- FIXME: Remove this after GHC 9.4 gets fully supported
357
+ when (ghcVersion == GHC94 ) $
358
+ log Warning LogOnlyPartialGhc94Support
359
359
monitoring <- argsMonitoring
360
360
initialise
361
361
(cmapWithPrio LogService recorder)
0 commit comments