Skip to content

Commit b363180

Browse files
fix(modules-collector): Fix info output log to show from where modules are collected (#3316)
1 parent 20b0c03 commit b363180

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Change log output to show what paths are considered when collecting modules ([#3316](https://github.com/getsentry/sentry-react-native/pull/3316))
8+
39
## 5.10.0
410

511
### Features

src/js/tools/ModulesCollector.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default class ModulesCollector {
104104

105105
logger.info('Reading source map from', sourceMapPath);
106106
logger.info('Saving modules to', outputModulesPath);
107-
logger.info('Resolving modules from paths', outputModulesPath);
107+
logger.info('Resolving modules from paths', modulesPaths.join(', '));
108108

109109
if (!existsSync(sourceMapPath)) {
110110
logger.error(`Source map file does not exist at ${sourceMapPath}`);

0 commit comments

Comments
 (0)