Skip to content

Commit 616b2d0

Browse files
committed
Last review change
1 parent d7acbc5 commit 616b2d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opentelemetry-sdk/src/metrics/periodic_reader.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::{
88
time::{Duration, Instant},
99
};
1010

11-
use opentelemetry::{otel_debug, otel_error, otel_warn};
11+
use opentelemetry::{otel_debug, otel_error, otel_info, otel_warn};
1212

1313
use crate::{
1414
error::{OTelSdkError, OTelSdkResult},
@@ -251,7 +251,7 @@ impl<E: PushMetricExporter> PeriodicReader<E> {
251251
// tells that it timed out.
252252
if export_result.is_err() || shutdown_result.is_err() {
253253
if response_sender.send(false).is_err() {
254-
otel_debug!(
254+
otel_info!(
255255
name: "PeriodReaderThreadShutdown.ResponseSendError",
256256
message = "PeriodicReader's shutdown has failed, but unable to send this info back to caller.
257257
This occurs when the caller has timed out waiting for the response. If you see this occuring frequently, consider increasing the shutdown timeout."

0 commit comments

Comments
 (0)