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
I would like to be able to combine multiple printers in any variation and any length.
You want to prefix your log messages with the log level: PrefixPrinter → PrettyPrinter
Which could then produce this:
┌────────────────────────────────────────────── │ 15:20:17.587 (+0:00:00.202000) ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ │ 🐛 DEBUG: Test message └──────────────────────────────────────────────
Or you want to prefix every line: PrettyPrinter → PrefixPrinter
DEBUG: ┌────────────────────────────────────────────── DEBUG: │ 15:20:17.587 (+0:00:00.202000) DEBUG: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ DEBUG: │ 🐛 Test message DEBUG: └──────────────────────────────────────────────
and so on...
LogEvent
List<String>
Maybe we should rethink the approach of using List<String>.
The text was updated successfully, but these errors were encountered:
Adding feature request by @talhazengin (#22):
PrettyPrinter should have an option to write the log level at the beginning of the log message.
Sorry, something went wrong.
LogFilter.level
Draft is available under the multiple_printers branch.
multiple_printers
No branches or pull requests
I would like to be able to combine multiple printers in any variation and any length.
Example:
You want to prefix your log messages with the log level:
PrefixPrinter → PrettyPrinter
Which could then produce this:
Or you want to prefix every line:
PrettyPrinter → PrefixPrinter
and so on...
Current blockers:
LogEvent
and return aList<String>
.Maybe we should rethink the approach of using
List<String>
.The text was updated successfully, but these errors were encountered: