Skip to content

Commit

Permalink
chore: log filtered out files instead of all
Browse files Browse the repository at this point in the history
When we log filtered out files we were logging all found
by mistake instead of only the ones dropped.
  • Loading branch information
lili2311 committed Dec 23, 2020
1 parent c7622cc commit cdff3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/find-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export async function find(
debug(
`Filtered out ${filteredOutFiles.length}/${
foundAll.length
} files: ${foundAll.join(', ')}`,
} files: ${filteredOutFiles.join(', ')}`,
);
}
return { files: filterForDefaultManifests(found), allFilesFound: foundAll };
Expand Down

0 comments on commit cdff3af

Please sign in to comment.