Popularity
2.6
Declining
Activity
0.0
Stable
1
3
0
Monthly Downloads: 1
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v2.0.1.0
gore-and-ash-logging alternatives and similar packages
Based on the "gore" category.
Alternatively, view gore-and-ash-logging alternatives based on common mentions on social networks and blogs.
-
gore-and-ash-async
DISCONTINUED. Core module for Gore&Ash engine that embeds async IO actions into game loop.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of gore-and-ash-logging or a related project?
README
gore-and-ash-logging
The module provides facilities for console logging for Gore&Ash engine.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-logging.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add LoggingT
:
type AppStack = ModuleStack [LoggingT, ... other modules ... ] IO
And derive LoggingMonad
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, LoggingMonad)