We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e14ca commit f7c99beCopy full SHA for f7c99be
src/Nix/Thunk/Basic.hs
@@ -15,7 +15,6 @@ import Control.Exception hiding ( catch )
15
import Control.Monad.Catch
16
17
import Nix.Thunk
18
-import Nix.Utils
19
import Nix.Var
20
21
data Deferred m v = Deferred (m v) | Computed v
@@ -75,7 +74,6 @@ forceThunk (Thunk n active ref) k = do
75
74
if nowActive
76
then throwM $ ThunkLoop $ show n
77
else do
78
- traceM $ "Forcing " ++ show n
79
v <- catch action $ \(e :: SomeException) -> do
80
_ <- atomicModifyVar active (False, )
81
throwM e
0 commit comments