-
Notifications
You must be signed in to change notification settings - Fork 91
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
introduce verbosity levels #1175
Comments
If I understand correctly, we would like to see debug messages from
without all the noisy output from |
FWIW, Github Actions CI does support console colors. (The classic escape sequences). Here's a quick sample: But because GHA runner doesn't create a PTY (neither forwards it properly through all the containers) — the Must force-enable it explicitly, e.g. for |
These are the stats for the log generated by Total lines: 16.5k We can reduce a big amount of noise by removing merge tree logs from the default verbose output, and that would improve the situation a lot. But there is another solution for GitHub as it has a way to group the log lines together and collapse them, so that viewing the file on the web will be much more easier. To achieve this we need to wrap the log lines with these start/end "tags"
One issue with this approach could be if there is interleaving of log lines from multiple places. |
We want verbosity for e.g. CI where:
The text was updated successfully, but these errors were encountered: