File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ export const standalone = (props: RuntimeProps) => {
375
375
...current_config ,
376
376
requestHandler : requestHandler ,
377
377
} )
378
- logging . log ( `Configured AWS SDK V3 Proxy for ${ Ctor . name } ` )
378
+ logging . log ( `Configured AWS SDK V3 Proxy for client. ` )
379
379
return instance
380
380
} catch ( err ) {
381
381
telemetry . emitMetric ( {
@@ -387,9 +387,7 @@ export const standalone = (props: RuntimeProps) => {
387
387
} )
388
388
389
389
// Fallback
390
- logging . log (
391
- `Failed to configure AWS SDK V3 Proxy for client ${ Ctor . name } . Starting without proxy.`
392
- )
390
+ logging . log ( `Failed to configure AWS SDK V3 Proxy for client. Starting without proxy.` )
393
391
return new Ctor ( { ...current_config } )
394
392
}
395
393
} ,
@@ -409,7 +407,7 @@ export const standalone = (props: RuntimeProps) => {
409
407
logging . log ( `Using ${ isExperimentalProxy ? 'experimental' : 'standard' } proxy util` )
410
408
411
409
instance . config . update ( configOptions )
412
- logging . log ( `Configured AWS SDK V2 Proxy for ${ Ctor . name } ` )
410
+ logging . log ( `Configured AWS SDK V2 Proxy for client. ` )
413
411
return instance
414
412
} catch ( err ) {
415
413
telemetry . emitMetric ( {
@@ -421,9 +419,7 @@ export const standalone = (props: RuntimeProps) => {
421
419
} )
422
420
423
421
// Fallback
424
- logging . log (
425
- `Failed to configure AWS SDK V2 Proxy for client ${ Ctor . name } . Starting without proxy.`
426
- )
422
+ logging . log ( `Failed to configure AWS SDK V2 Proxy for client. Starting without proxy.` )
427
423
return instance
428
424
}
429
425
} ,
You can’t perform that action at this time.
0 commit comments