We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa67e75 commit 0f6f696Copy full SHA for 0f6f696
sdk/monitor/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_utils/configurations.py
@@ -137,7 +137,7 @@ def _default_sampling_ratio(configurations):
137
if environ.get(OTEL_TRACES_SAMPLER) == RATE_LIMITED_SAMPLER:
138
try:
139
default = float(environ[OTEL_TRACES_SAMPLER_ARG])
140
- print(f"Using rate limited sampler: {default} traces per second")
+ _logger.info(f"Using rate limited sampler: {default} traces per second")
141
except ValueError as e:
142
_logger.error( # pylint: disable=C
143
_INVALID_TRACES_PER_SECOND_MESSAGE,
0 commit comments