diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
 
diff --git a/log-base.cabal b/log-base.cabal
--- a/log-base.cabal
+++ b/log-base.cabal
@@ -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
diff --git a/src/Log/Class.hs b/src/Log/Class.hs
--- a/src/Log/Class.hs
+++ b/src/Log/Class.hs
@@ -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
