fix: explicit boolean for logging (#40681)

This commit is contained in:
Carlos Marchal
2025-10-30 19:33:47 +01:00
committed by GitHub
parent 2a9e676f64
commit 9ceb870fa3

View File

@@ -62,10 +62,11 @@ export class TemporalService {
namespace: this.hub.TEMPORAL_NAMESPACE || 'default',
})
const tlsEnabled: boolean = credentials !== undefined
logger.info('✅ Connected to Temporal', {
address,
namespace: this.hub.TEMPORAL_NAMESPACE,
tlsEnabled: credentials !== undefined,
tlsEnabled,
})
return client