Skip to content

Commit f7c99be

Browse files
committed
Disable debug logging on thunk force
1 parent 67e14ca commit f7c99be

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Nix/Thunk/Basic.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import Control.Exception hiding ( catch )
1515
import Control.Monad.Catch
1616

1717
import Nix.Thunk
18-
import Nix.Utils
1918
import Nix.Var
2019

2120
data Deferred m v = Deferred (m v) | Computed v
@@ -75,7 +74,6 @@ forceThunk (Thunk n active ref) k = do
7574
if nowActive
7675
then throwM $ ThunkLoop $ show n
7776
else do
78-
traceM $ "Forcing " ++ show n
7977
v <- catch action $ \(e :: SomeException) -> do
8078
_ <- atomicModifyVar active (False, )
8179
throwM e

0 commit comments

Comments
 (0)