Skip to content

Commit

Permalink
Ormolu
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjaguarpaw committed Nov 21, 2024
1 parent 83b5983 commit e302d47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bluefin-internal/src/Bluefin/Internal/Examples.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ runLog io k = do

type DB = H BasicDB

insertDB :: e :> es => DB e -> DBValue -> Eff es ()
insertDB :: (e :> es) => DB e -> DBValue -> Eff es ()
insertDB d v = do
b <- askH d
insertBasicDB b v
Expand Down Expand Up @@ -1165,12 +1165,12 @@ main =
insertDB d "value7"

suppressLog l $ do
hookLoggingInsertDBLocally d l $ do
insertDB d "value9"
hookLoggingInsertDBLocally d l $ do
insertDB d "value9"

hookLoggingInsertDBLocally d l $ do
suppressLog l $ do
insertDB d "value10"
suppressLog l $ do
insertDB d "value10"

{-
Expand Down

0 comments on commit e302d47

Please sign in to comment.