
Hi will - I wanted to thank you for your reply.
It seems like with runStderrLoggingT, I'd have to start learning about monad
transformers. I know that this is something that I have to learn eventually; I'm
100% convinced of that, but for now I am going with an orphaned instance of
MonadLogger IO. As soon as I wire up the database, I'll start on monad
transformers. I've been told that Stephen Diehl is a good resource for it.
Thank you very much.
On Thu, Oct 26, 2017 9:33 AM, Will Yager will.yager@gmail.com wrote:
You want e.g.
https://hackage.haskell.org/package/monad-logger-0.3.25.1/docs/Control-Monad...
You can mentally replace “m” with “IO”.
It takes some monadic action that requires logging (like setting up a database
pool) and provides a concrete implementation of how logging should be done (like
printing messages to stdout), thus discharging the MonadLogger constraint. See
“MTL style”.
I think MonadLogger is as good an introduction to monad transformers as any,
since it’s fairly straightforward. Most of the instances are like the reader
monad, where they just pass around some function that takes the log details and
does something with them.
On Oct 26, 2017, at 8:43 AM, Steven Leiva