Skip to content

Commit

Permalink
feat: improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Nov 9, 2018
1 parent ef30cdb commit 92d83a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/install-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const cleanNonDirectDependencies = async (
return Promise.all(
(await readdir(packageNodeModulesPath)).map(path => {
if (allowedPaths.has(path)) return null;
log.notice("in %s remove unexpected dependency path %s", packageName, path);
log.info("in %s remove unexpected dependency %s", packageName, path);
return rm(resolve(packageNodeModulesPath, path), {
force: true,
loose: true,
Expand Down

0 comments on commit 92d83a2

Please sign in to comment.