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
At debug level, this crate logs one line per byte of input, which makes the debug logs quite hard to read.
debug
[2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte U+0020 to ParagraphInside [2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte `s` (U+0073) to ParagraphInside [2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte `e` (U+0065) to ParagraphInside [2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte `c` (U+0063) to ParagraphInside [2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte `r` (U+0072) to ParagraphInside [2023-11-19T17:27:14Z DEBUG markdown::tokenizer] feed: byte `e` (U+0065) to ParagraphInside
Maybe this log could be moved to TRACE level ?
TRACE
The text was updated successfully, but these errors were encountered:
trace
Fix to use trace for verbose debug logs
8ea1401
Closes GH-91. Closes GH-92. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
Successfully merging a pull request may close this issue.
At
debug
level, this crate logs one line per byte of input, which makes the debug logs quite hard to read.Maybe this log could be moved to
TRACE
level ?The text was updated successfully, but these errors were encountered: