Closed
Description
What / Why
Currently, when you run npm install <module> --silent
(or any other log filter), both fund
and audit
are logged. (Credit where credit is due: Tweet)
When
- Audit: Whenever I npm install a module.
- Fund: Whenever I npm install a module that resolves a module with a fund property in its dependency tree.
Where
- npm/cli
Current Behavior
console.log()
s bothfund
andaudit
no matter
Steps to Reproduce
- n/a
Expected Behavior
- Both
audit
andfund
should likely both be considerednotice
level logs and not appear in anything more strict than that (sincenotice
is the default, this also makes sense with the current default behavior of both of them).