Skip to content

Commit b6cf396

Browse files
francescoopiccoliFrancesco Piccoli
andauthored
chore: remove logging class names (#412)
Co-authored-by: Francesco Piccoli <[email protected]>
1 parent 595475e commit b6cf396

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

runtimes/runtimes/standalone.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ export const standalone = (props: RuntimeProps) => {
375375
...current_config,
376376
requestHandler: requestHandler,
377377
})
378-
logging.log(`Configured AWS SDK V3 Proxy for ${Ctor.name}`)
378+
logging.log(`Configured AWS SDK V3 Proxy for client.`)
379379
return instance
380380
} catch (err) {
381381
telemetry.emitMetric({
@@ -387,9 +387,7 @@ export const standalone = (props: RuntimeProps) => {
387387
})
388388

389389
// 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.`)
393391
return new Ctor({ ...current_config })
394392
}
395393
},
@@ -409,7 +407,7 @@ export const standalone = (props: RuntimeProps) => {
409407
logging.log(`Using ${isExperimentalProxy ? 'experimental' : 'standard'} proxy util`)
410408

411409
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.`)
413411
return instance
414412
} catch (err) {
415413
telemetry.emitMetric({
@@ -421,9 +419,7 @@ export const standalone = (props: RuntimeProps) => {
421419
})
422420

423421
// 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.`)
427423
return instance
428424
}
429425
},

0 commit comments

Comments
 (0)