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
Currently my single progress bar gets duplicated, if any log output is printed in any of the calling functions.
Bar 1 ∙∙∙ [############################################..................] 71 % Log output 1 Bar 1 [##############################################################] 100 % Log output 2
Is there a way to print any associated logs like this, for a single progress bar?
Bar 1 [##############################################################] 100 % Log output 1 Log output 2
The text was updated successfully, but these errors were encountered:
Yes, there is a way to do it. Follow this example _examples/progressAsWriter/main.go
Also #105 for the context
Sorry, something went wrong.
oh, sorry, you cannot print log below only above, because the way how progress bar is working in terminal it can work only on the last line.
thank you for your response!
No branches or pull requests
Currently my single progress bar gets duplicated, if any log output is printed in any of the calling functions.
Is there a way to print any associated logs like this, for a single progress bar?
The text was updated successfully, but these errors were encountered: