You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all logging in the library and binary are done with println macro calls.
Instead, using structured logging with a crate like log is preferable. Structured logging allows users to easily filter different levels of log messages, or disable logging altogether. log also gives precise timing information, which greatly helps with triaging errors.
There is currently no easy way to filter out messages emitted by the library.
The text was updated successfully, but these errors were encountered:
Currently, all logging in the library and binary are done with
println
macro calls.Instead, using structured logging with a crate like
log
is preferable. Structured logging allows users to easily filter different levels of log messages, or disable logging altogether.log
also gives precise timing information, which greatly helps with triaging errors.There is currently no easy way to filter out messages emitted by the library.
The text was updated successfully, but these errors were encountered: