@@ -194,7 +194,7 @@ export class SentryHttpInstrumentation extends InstrumentationBase<SentryHttpIns
194
194
* It has access to the final request and response objects.
195
195
*/
196
196
private _onOutgoingRequestFinish ( request : http . ClientRequest , response ?: http . IncomingMessage ) : void {
197
- DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Handling outgoing request finish ' ) ;
197
+ DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Handling finished outgoing request' ) ;
198
198
199
199
const _breadcrumbs = this . getConfig ( ) . breadcrumbs ;
200
200
const breadCrumbsEnabled = typeof _breadcrumbs === 'undefined' ? true : _breadcrumbs ;
@@ -222,7 +222,7 @@ export class SentryHttpInstrumentation extends InstrumentationBase<SentryHttpIns
222
222
return ;
223
223
}
224
224
225
- DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Patching server.emit!!! ' ) ;
225
+ DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Patching server.emit() ' ) ;
226
226
227
227
// eslint-disable-next-line @typescript-eslint/no-this-alias
228
228
const instrumentation = this ;
@@ -235,7 +235,7 @@ export class SentryHttpInstrumentation extends InstrumentationBase<SentryHttpIns
235
235
return target . apply ( thisArg , args ) ;
236
236
}
237
237
238
- DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'isolating incoming request' ) ;
238
+ DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Handling incoming request' ) ;
239
239
240
240
const isolationScope = getIsolationScope ( ) . clone ( ) ;
241
241
const request = args [ 1 ] as http . IncomingMessage ;
@@ -373,7 +373,7 @@ function patchRequestToCaptureBody(req: http.IncomingMessage, isolationScope: Sc
373
373
const [ event , listener , ...restArgs ] = args ;
374
374
375
375
if ( event === 'data' ) {
376
- DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Handling request.on' , event ) ;
376
+ DEBUG_BUILD && logger . log ( INSTRUMENTATION_NAME , 'Handling request.on("data")' ) ;
377
377
const callback = new Proxy ( listener , {
378
378
apply : ( target , thisArg , args : Parameters < typeof listener > ) => {
379
379
try {
0 commit comments