File tree 1 file changed +3
-3
lines changed
ghcide/session-loader/Development/IDE
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,12 +154,12 @@ data Log
154
154
| LogSessionNewLoadedFiles ! [FilePath ]
155
155
| LogSessionReloadOnError FilePath ! [FilePath ]
156
156
| LogGetOptionsLoop ! FilePath
157
- | LogGetSessionRetry ! FilePath
157
+ | LogLookupSessionCache ! FilePath
158
158
deriving instance Show Log
159
159
160
160
instance Pretty Log where
161
161
pretty = \ case
162
- LogGetSessionRetry path -> " Retrying get session for" <+> pretty path
162
+ LogLookupSessionCache path -> " Looking up session cache for" <+> pretty path
163
163
LogGetOptionsLoop fp -> " Loop: getOptions for" <+> pretty fp
164
164
LogSessionReloadOnError path files ->
165
165
" Reloading file due to error in" <+> pretty path <+> " with files:" <+> pretty files
@@ -799,7 +799,7 @@ loadSessionWithOptions recorder SessionLoadingOptions{..} rootDir que = do
799
799
let ncfp = toNormalizedFilePath' absFile
800
800
-- check if in the cache
801
801
res <- atomically $ checkInCache ncfp
802
- logWith recorder Info $ LogGetSessionRetry absFile
802
+ logWith recorder Info $ LogLookupSessionCache absFile
803
803
updateDateRes <- case res of
804
804
Just r -> do
805
805
depOk <- checkDependencyInfo (snd r)
You can’t perform that action at this time.
0 commit comments