Skip to content

Commit c221dc2

Browse files
committed
print error with sentry_debug
1 parent 475b6fb commit c221dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry/src/transports/tokio_thread.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl TransportThread {
8989
// reason, trying to send an envelope would block everything. We'd rather
9090
// drop the envelope in that case.
9191
if let Err(e) = self.sender.try_send(Task::SendEnvelope(envelope)) {
92-
eprintln!("envelope dropped: {e}");
92+
sentry_debug!("envelope dropped: {e}");
9393
}
9494
}
9595

0 commit comments

Comments
 (0)