-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Ability to write raw Messages #8
Comments
Thanks for your interest! Raw message support seems like a useful feature that many potential users of the library crate would want, so a patch would be very welcome. Please note that the there is a message buffer already, and as long as its big enough all messages will appear on screen. If the program emits too many messages, some messages might be overwritten before being rendered unless the buffer is big enough. |
Ah, got it. I missed that each Thanks! |
I've posted a draft to #9 : none of the tests have been updated yet, (nor has the |
Thanks a lot for writing
prodash
! Over in https://github.com/pantsbuild/pants, we have log formatting and construction that we'd like to stick with while considering moving toprodash::line
for rendering running work.To do that without tearing down the UI for each "raw" stderr output, it seems like it might makes sense to support sending "raw" (unfiltered/unleveled)
Messages
, which would not be interpreted by the renderer at all, except to dump them.Would a patch to support un-interpreted
Messages
be welcome? We would also likely need to add a message buffer to the root, to guarantee that there was a live buffer even when no work was being rendered.The text was updated successfully, but these errors were encountered: