We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
withTimedFastLogger currently has this signature:
withTimedFastLogger
withTimedFastLogger :: IO FormattedTime -> LogType -> (TimedFastLogger -> IO a) -> IO a
Is it possible to have a lifted one?
withTimedFastLogger :: MonadIO m => m FormattedTime -> LogType -> (TimedFastLogger -> m a) -> m a
The text was updated successfully, but these errors were encountered:
I believe that withTimedFastLogger was implemented by @winterland1989. @winterland1989 Would you discuss this with @AlexeyRaga?
Sorry, something went wrong.
I am always in favor of raw IO type, it helps when you want to lift multiple IO action without multiple times lift.
IO
lift
No branches or pull requests
withTimedFastLogger
currently has this signature:Is it possible to have a lifted one?
The text was updated successfully, but these errors were encountered: