packages feed

eventlog-live 0.2.0.0 → 0.2.0.1

raw patch · 3 files changed

+12/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+### 0.2.0.1++- Fix error due to incorrect formatting string.+ ### 0.2.0.0  - Add `verbosityInfo` and `verbosityDebug`.
eventlog-live.cabal view
@@ -1,6 +1,6 @@ cabal-version:   3.0 name:            eventlog-live-version:         0.2.0.0+version:         0.2.0.1 synopsis:        Live processing of eventlog data. description:   This package supports live processing of eventlog data.
src-machines/GHC/Eventlog/Live/Machine/Core.hs view
@@ -479,10 +479,14 @@         Just old           | timestamp new < timestamp old -> do               logError verbosity "validateOrder" . T.pack $+                "Encountered two out-of-order inputs.\n\+                \Did you pass --eventlog-flush-interval to the GHC RTS?\n\+                \Did you set --batch-interval to be at least as big as the value of --eventlog-flush-interval?"+              logDebug verbosity "validateOrder" . T.pack $                 printf-                  "Encountered two out-of-order inputs.\n\-                  \Did you pass --eventlog-flush-interval to the GHC RTS?\n\-                  \Did you set --batch-interval to be at least as big as the value of --eventlog-flush-interval?"+                  "Out-of-order inputs:\n\+                  \- %s\n\+                  \- %s"                   (show old)                   (show new)               pure ()