Skip to content

ScheduledMerges: disable debug tracer #771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test-prototypes/Test/ScheduledMergesQLS.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Test.ScheduledMergesQLS (tests) where

import Control.Monad.Reader (ReaderT (..))
import Control.Monad.ST
import Control.Tracer (Contravariant (contramap), Tracer, debugTracer)
import Control.Tracer (Tracer, nullTracer)
import Data.Constraint (Dict (..))
import Data.Map.Strict (Map)
import qualified Data.Map.Strict as Map
Expand Down Expand Up @@ -411,7 +411,7 @@ runActionIO action lookUp = ReaderT $ \tidVar -> do
lookUpVar = realLookupVar (Proxy :: Proxy IO) lookUp

tr :: Tracer (ST RealWorld) Event
tr = show `contramap` debugTracer
tr = nullTracer

incrTidVar :: PrimVar RealWorld TableId -> IO TableId
incrTidVar tidVar = do
Expand Down