-
Notifications
You must be signed in to change notification settings - Fork 126
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
Silent cargo make output but keep script output #901
Comments
I can't setup flags for every possible output variation. |
That is not what I meant. What I expected was to be able to control the log level exclusively of cargo make. The current behavior is quite limiting as it is a global option.
In that case I would need a different target for every pipeline. If i need to edit an output with |
This was also one of the first things I reacted over when trying out this project. I strongly dislike the verbose unrelated output. |
@silven you have both --quiet and --silent to make output very minimal/off |
closing due to lack of feedback |
I agree this is very unusual behavior. I would expect As it is currently, there is no way to generally run a task and pipe it's output somewhere. One such use-case is to set VSCode to use a |
@jdygert-spok the logging config is complex already as it is. i get people saying its too much, others too little, others complain on hard to troubleshoot due to things not logged out by default and so on.... |
Here is another use case that cannot be done due to this surprising behavior. I expected to be able to configure VSCode workspace to use {
"settings": {
"rust-analyzer.check.overrideCommand": [
"cargo",
"make",
"clippy",
"--workspace",
"--message-format=json",
"--all-targets",
"--tests",
],
}
} Because the IDE expects a JSON output from that command (see: |
ya, its a bit tricky but will find some solution for this... |
Yep, already looking for alternatives to |
enjoy |
Feature Description
I want to be able to get the output of a script without
cargo make
steps info.Use case
This is useful for piping the output of a script to some other tool or to a file
Describe The Solution You'd Like
A flag for silencing
cargo make
output.Current behavior
The current flags also affect the output of the script:
The text was updated successfully, but these errors were encountered: