Skip to content

Commit 9ac39e8

Browse files
committed
Fix changed
1 parent 38f7c46 commit 9ac39e8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ otTracedAction key file mode success act
9696
res <- act
9797
unless (success $ runValue res) $ setTag sp "error" "1"
9898
setTag sp "changed" $ case res of
99-
RunResult ChangedRecomputeSame _ _ -> "0"
100-
RunResult ChangedNothing _ _ -> "0"
101-
RunResult ChangedRecomputeDiff _ _ -> "0"
99+
RunResult x _ _ -> fromString $ show x
102100
return res)
103101
| otherwise = act
104102

0 commit comments

Comments
 (0)