We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71a5288 commit 2a1467cCopy full SHA for 2a1467c
packages/dd-trace/src/profiling/profiler.js
@@ -43,6 +43,11 @@ class Profiler extends EventEmitter {
43
let mapper
44
try {
45
mapper = await maybeSourceMap(config.sourceMap)
46
+ if (mapper && mapper.infoMap.size > 0) {
47
+ this._logger.debug(() => {
48
+ return `Found source-maps for following files: [${Array.from(mapper.infoMap.keys()).join(', ')}]`
49
+ })
50
+ }
51
} catch (err) {
52
this._logger.error(err)
53
}
0 commit comments