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 0f6f696 commit 360c7daCopy full SHA for 360c7da
sdk/monitor/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_utils/configurations.py
@@ -149,7 +149,7 @@ def _default_sampling_ratio(configurations):
149
elif environ.get(OTEL_TRACES_SAMPLER) == FIXED_PERCENTAGE_SAMPLER:
150
try:
151
default = float(environ[OTEL_TRACES_SAMPLER_ARG])
152
- print(f"Using sampling ratio: {default}")
+ _logger.info(f"Using sampling ratio: {default}")
153
except ValueError as e:
154
_logger.error( # pylint: disable=C
155
_INVALID_FLOAT_MESSAGE,
0 commit comments