calamity-0.1.7.0: src/Calamity/Types/LogEff.hs
{-# LANGUAGE NoImplicitPrelude #-}
-- | The logging effect we use
module Calamity.Types.LogEff
( LogEff
, LogC ) where
import qualified Df1
import DiPolysemy
import qualified Polysemy as P
type LogEff = Di Df1.Level Df1.Path Df1.Message
type LogC r = P.Member LogEff r