kazu-yamamoto / logger

A fast logging system for Haskell
159 stars 68 forks source link

Fix #106 by correcting the default signature for MonadLoggerIO #108

Closed RyanGlScott closed 7 years ago

RyanGlScott commented 7 years ago

As pointed out in GHC Trac #12784, monad-logger is failing to compile on GHC 8.0.2 because it's using a bogus default type signature for askLoggerIO in the MonadLoggerIO class. Luckily, it's a simple fix.

Fixes #106.

snoyberg commented 7 years ago

Thanks!

ilovezfs commented 7 years ago

Thanks @RyanGlScott and @snoyberg!