polysemy-log-0.1.0.0: Polysemy effects for logging
Safe HaskellNone
LanguageHaskell2010

Polysemy.Log.Data.DataLog

Description

 
Synopsis

Documentation

data DataLog a :: Effect where Source #

Adapter for a logging backend.

Usually this is reinterpreted into an effect like those from co-log or di, but it can be used purely for testing. This effect is basically identical to Output and serves only as a nominal component.

Constructors

DataLog :: a -> DataLog a m ()

Schedule an arbitrary value for logging.

Instances

Instances details
type DefiningModule DataLog Source # 
Instance details

Defined in Polysemy.Log.Data.DataLog

type DefiningModule DataLog = "Polysemy.Log.Data.DataLog"