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
Documentation at http://package.elm-lang.org/packages/iosphere/elm-logger/1.0.1/Logger shows the following initialization code:
import Logger loggerConfig : Logger.Config loggerConfig = Logger.config Logger.Info
But this fails with a type-error. I had to specify the type as
loggerConfig : Logger.Config a
(note the last a).
a
The text was updated successfully, but these errors were encountered:
Add type parameter a to loggerConfig type signature
1c9a1b3
Add type parameter `a` to loggerConfig type signature. See issue iosphere#2 for more details.
No branches or pull requests
Documentation at http://package.elm-lang.org/packages/iosphere/elm-logger/1.0.1/Logger shows the following initialization code:
But this fails with a type-error. I had to specify the type as
(note the last
a
).The text was updated successfully, but these errors were encountered: