-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Unexpected output when using --quiet #782
Comments
Just for my understanding: Can you please confirm @na-- |
@openmohan, not exactly. In my opinion, when |
I would expect the report at stdout even the quiet is on. |
@apmattil Yes. |
It would be handy to get rid of all the output. Suppose I want to pipe the JSON output to |
This depends on #1376 |
If I execute
k6 --quiet run script.js > output-stdout.log 2> output-stderr.log
wherescript.js
contains:I'd expect to see something like this in one of the files:
indeed,
output-stdderr.log
contains the logged message:the log format change is somewhat understandable (since we redirect the err stream to a non-TTY output), and even though logging user
console.log()
messages to stderr is a bit strange, at least it's consistent.My troubles are with
output-stdout.log
, because it contains this:Which is not very quiet at all...
The text was updated successfully, but these errors were encountered: