bcoe / c8

output coverage reports using Node.js' built in coverage
ISC License
2k stars 91 forks source link

Feature Request: Add a silent option #414

Open blakegearin opened 2 years ago

blakegearin commented 2 years ago

Having the ability to add a silent option (typically -s/--silent or -q/--quiet) to suppress/reduce logging would be nice. This is especially true for a command like c8 report since it already has an output file that can be referenced as needed. I noticed istanbuljs/nyc already has this option if that helps with implementation.

fasttime commented 2 years ago

The additional output is generated by the text reporter (the default). You can achieve the same effect of the silent option with --reporter=none to disable the text reporter.