log-base 0.10.0.0 → 0.10.0.1
raw patch · 3 files changed
+4/−5 lines, 3 filesdep ~monad-controlnew-uploader
Dependency ranges changed: monad-control
Files
- CHANGELOG.md +3/−0
- log-base.cabal +1/−1
- src/Log/Class.hs +0/−4
CHANGELOG.md view
@@ -1,3 +1,6 @@+# log-base-0.10.0.1 (2021-07-29)+* Fix compilation issues caused by ambiguos occurence of `controlT`.+ # log -base-0.10.0.0 (2021-06-09) * Drop `MonadTime` constraint and use system time by default.
log-base.cabal view
@@ -1,5 +1,5 @@ name: log-base-version: 0.10.0.0+version: 0.10.0.1 synopsis: Structured logging solution (base package) description: A library that provides a way to record structured log
src/Log/Class.hs view
@@ -51,10 +51,6 @@ localDomain domain m = controlT $ \run -> localDomain domain (run m) getLoggerEnv = lift getLoggerEnv -controlT :: (MonadTransControl t, Monad (t m), Monad m)- => (Run t -> m (StT t a)) -> t m a-controlT f = liftWith f >>= restoreT . return- ---------------------------------------- -- | Log a message and its associated data using current time as the