-
-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
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
refactor: replace the file storage logger with the default logger #311
base: master
Are you sure you want to change the base?
Conversation
Thanks; I suppose this is better than using the std lib logger, as it's the "wrong" logger either way (these places don't have a config available to them for us to get the "correct" logger). Although, |
@mholt I think |
That's only the case if a new instance of a Config is made by using Default as an input (like a template).
|
Replace Default.Logger with defaultLogger
@mholt I have replaced Default.Logger with defaultLogger. |
Thanks -- sorry I've been backlogged. This is still on my list just FYI :) |
I use certmagic in my project, it's great, but I had trouble collecting logs, so I want to replace
log
withDefault.Logger
to make the log style uniform!