Skip to content

Commit 38acb86

Browse files
authored
Tone down logging of plugin rules (#2723)
* Tone down logging * simple-multi-test is expected broken in 9.2
1 parent 75ff238 commit 38acb86

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ghcide/src/Development/IDE/Core/Service.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ shutdown = shakeShut
8080
-- e.g., the ofInterestRule.
8181
runAction :: String -> IdeState -> Action a -> IO a
8282
runAction herald ide act =
83-
join $ shakeEnqueue (shakeExtras ide) (mkDelayedAction herald Logger.Info act)
83+
join $ shakeEnqueue (shakeExtras ide) (mkDelayedAction herald Logger.Debug act)

ghcide/test/exe/Main.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -5492,7 +5492,8 @@ simpleSubDirectoryTest =
54925492
expectNoMoreDiagnostics 0.5
54935493

54945494
simpleMultiTest :: TestTree
5495-
simpleMultiTest = testCase "simple-multi-test" $ withLongTimeout $ runWithExtraFiles "multi" $ \dir -> do
5495+
simpleMultiTest = knownBrokenForGhcVersions [GHC92] "#2693" $
5496+
testCase "simple-multi-test" $ withLongTimeout $ runWithExtraFiles "multi" $ \dir -> do
54965497
let aPath = dir </> "a/A.hs"
54975498
bPath = dir </> "b/B.hs"
54985499
adoc <- openDoc aPath "haskell"

0 commit comments

Comments
 (0)