We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bfe82b commit 6fb4641Copy full SHA for 6fb4641
ghcide/src/Development/IDE/Core/Shake.hs
@@ -583,9 +583,10 @@ startTelemetry db extras@ShakeExtras{..}
583
584
-- | Must be called in the 'Initialized' handler and only once
585
shakeSessionInit :: IdeState -> IO ()
586
-shakeSessionInit IdeState{..} = do
+shakeSessionInit ide@IdeState{..} = do
587
initSession <- newSession shakeExtras shakeDb [] "shakeSessionInit"
588
putMVar shakeSession initSession
589
+ logDebug (ideLogger ide) "Shake session initialized"
590
591
shakeShut :: IdeState -> IO ()
592
shakeShut IdeState{..} = withMVar shakeSession $ \runner -> do
0 commit comments