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 ae75eb4Copy full SHA for ae75eb4
packages/dd-trace/src/profiling/profiler.js
@@ -43,6 +43,13 @@ class Profiler extends EventEmitter {
43
let mapper
44
try {
45
mapper = await maybeSourceMap(config.sourceMap)
46
+ if (mapper) {
47
+ this._logger.debug(() => {
48
+ return mapper.infoMap.size === 0
49
+ ? 'Found no source maps'
50
+ : `Found source-maps for following files: [${Array.from(mapper.infoMap.keys()).join(', ')}]`
51
+ })
52
+ }
53
} catch (err) {
54
this._logger.error(err)
55
}
0 commit comments