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
logger.info({ blue: "Black" }, "Getting date from API") produces:
logger.info({ blue: "Black" }, "Getting date from API")
And doing this from the server-side works as expected.
Use a child logger as a workaround:
child = logger.child({ blue: "Black" }) child.info("Getting date from API")
The text was updated successfully, but these errors were encountered:
Fixed with v0.3.10
Sorry, something went wrong.
was this fixed with 0.3.10?
No branches or pull requests
logger.info({ blue: "Black" }, "Getting date from API")
produces:And doing this from the server-side works as expected.
Use a child logger as a workaround:
The text was updated successfully, but these errors were encountered: