Skip to content

Commit

Permalink
ref(spans): Make span feature disabled message debug level (#3685)
Browse files Browse the repository at this point in the history
  • Loading branch information
iker-barriocanal committed Jun 5, 2024
1 parent c227ece commit 1e100ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relay-server/src/services/processor/span.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn filter(state: &mut ProcessEnvelopeState<SpanGroup>) {
.has_feature(Feature::StandaloneSpanIngestion);
state.managed_envelope.retain_items(|item| {
if item.is_span() && standalone_span_ingestion_disabled {
relay_log::warn!("dropping span because feature is disabled");
relay_log::debug!("dropping span because feature is disabled");
ItemAction::DropSilently
} else {
ItemAction::Keep
Expand Down

0 comments on commit 1e100ad

Please sign in to comment.