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
Add public function to create a StructuredLogger instance (without initialisation), essentially what's currently done here: https://github.com/iorust/structured-logger/blob/main/src/lib.rs#L201
This would allow possibly combining with other logging crates as it would allow creation of a log-trait satisfying instance.
Started hacking this into my own code, but got stuck as InnerTarget is private (needed to instantiate the writers field.
InnerTarget
private
writers
The text was updated successfully, but these errors were encountered:
feat: expose build to build logger without registering in log crate (f…
0d0dccd
…ixes iorust#2)
Successfully merging a pull request may close this issue.
Add public function to create a StructuredLogger instance (without initialisation), essentially what's currently done here:
https://github.com/iorust/structured-logger/blob/main/src/lib.rs#L201
This would allow possibly combining with other logging crates as it would allow creation of a log-trait satisfying instance.
Started hacking this into my own code, but got stuck as
InnerTarget
isprivate
(needed to instantiate thewriters
field.The text was updated successfully, but these errors were encountered: