diff --git a/CHANGELOG.md b/CHANGELOG.md index a070aeed71..d9f68b5378 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +### Fixes + +- Change log output to show what paths are considered when collecting modules ([#3316](https://github.com/getsentry/sentry-react-native/pull/3316)) + ## 5.10.0 ### Features diff --git a/src/js/tools/ModulesCollector.ts b/src/js/tools/ModulesCollector.ts index 30505d0da9..739fe4427c 100644 --- a/src/js/tools/ModulesCollector.ts +++ b/src/js/tools/ModulesCollector.ts @@ -104,7 +104,7 @@ export default class ModulesCollector { logger.info('Reading source map from', sourceMapPath); logger.info('Saving modules to', outputModulesPath); - logger.info('Resolving modules from paths', outputModulesPath); + logger.info('Resolving modules from paths', modulesPaths.join(', ')); if (!existsSync(sourceMapPath)) { logger.error(`Source map file does not exist at ${sourceMapPath}`);