diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+# 0.2.0.5
+prettyPrintSummary no longer prints the callstack
 # 0.2.0.4
 Updated to simple-effects-0.12.0.0
 
diff --git a/simple-logging.cabal b/simple-logging.cabal
--- a/simple-logging.cabal
+++ b/simple-logging.cabal
@@ -1,5 +1,5 @@
 name:                simple-logging
-version:             0.2.0.4
+version:             0.2.0.5
 synopsis:            Logging effect to plug into the simple-effects framework
 homepage:            https://gitlab.com/haskell-hr/logging
 license:             MIT
diff --git a/src/Control/Effects/Logging.hs b/src/Control/Effects/Logging.hs
--- a/src/Control/Effects/Logging.hs
+++ b/src/Control/Effects/Logging.hs
@@ -303,7 +303,6 @@
 prettyPrintSummary :: MonadIO m => Int -> RuntimeImplemented Logging m a -> m a
 prettyPrintSummary trunc h =
     flip handleLogging h $ \Log{..} -> liftIO $ do
-        let callStackSection = manyLines trunc (toS (prettyCallStack logCallStack))
         let LogData{..} = logData
         let dataSection =
                 if dataSummary == "" then truncate trunc (toSL dataPayload)
@@ -321,7 +320,6 @@
             putText ("│ " <> yellow "User:    " <> logUserId <> ", "
                                    <> fromMaybe " - " logUserEmail <> ", "
                                    <> fromMaybe " - " logUserUsername)
-        putText     ("│ " <> yellow "Stack:   " <> callStackSection)
         putText      "└"
 
 -- | Catches all IO exceptions, logs them and throws them back. The callstack in the log is __not__
