Skip to content
This repository was archived by the owner on Aug 11, 2022. It is now read-only.

Commit 1089878

Browse files
timoxleyiarna
authored andcommitted
filter-invalid-actions: Log 'skipping action' as 'verbose'
Rather than as 'warn'. This is papering over a deeper issue which will be resolved by making symlinks entirely opaque. Fixes: #9999 Credit: @timoxley Reviewed-By: @iarna PR-URL: #13613
1 parent bf3bd1e commit 1089878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/install/filter-invalid-actions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = function (top, differences, next) {
2424
if (pkg.isInLink || (pkg.parent && (pkg.parent.target || pkg.parent.isLink))) {
2525
// we want to skip warning if this is a child of another module that we're removing
2626
if (!pkg.parent.removing) {
27-
log.warn('skippingAction', 'Module is inside a symlinked module: not running ' +
27+
log.verbose('skippingAction', 'Module is inside a symlinked module: not running ' +
2828
cmd + ' ' + packageId(pkg) + ' ' + path.relative(top, pkg.path))
2929
}
3030
} else {

0 commit comments

Comments
 (0)