@twin.org/node-core 0.9.3-next.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -653,12 +653,6 @@ async function configureTracing(coreConfig, envVars) {
653
653
  });
654
654
  additionalConnectorCount++;
655
655
  }
656
- else if (tracingConnector === TracingConnectorType.Console) {
657
- coreConfig.types.tracingConnector.push({
658
- type: TracingConnectorType.Console
659
- });
660
- additionalConnectorCount++;
661
- }
662
656
  else if (tracingConnector === TracingConnectorType.OpenTelemetry) {
663
657
  const otelTracingConfig = {
664
658
  tracerName: envVars.openTelemetryTracingTracerName,
@@ -1652,8 +1646,6 @@ export function isTelemetryEnabled(envVars) {
1652
1646
  * @returns True if tracing is enabled.
1653
1647
  */
1654
1648
  export function isTracingEnabled(envVars) {
1655
- return commaSeparatedListToArray(envVars.tracingConnector).some(t => t === TracingConnectorType.EntityStorage ||
1656
- t === TracingConnectorType.OpenTelemetry ||
1657
- t === TracingConnectorType.Console);
1649
+ return commaSeparatedListToArray(envVars.tracingConnector).some(t => t === TracingConnectorType.EntityStorage || t === TracingConnectorType.OpenTelemetry);
1658
1650
  }
1659
1651
  //# sourceMappingURL=engineEnvBuilder.js.map