8000 log when span finishes · sdemjanenko/sentry-javascript@3c51352 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3c51352

Browse files
committed
log when span finishes
1 parent d092865 commit 3c51352

File tree

1 file changed

+1
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ function _createWrappedRequestMethodFactory(
137137
span.setHttpStatus(res.statusCode);
138138
}
139139
span.description = cleanSpanDescription(span.description, requestOptions, req);
140+
console.log(`finishing span ${span.description}`);
140141
span.finish();
141142
}
142143
})