Skip to content

Commit

Permalink
fix(ui): Demote aggregation target not found log to TRACE level
Browse files Browse the repository at this point in the history
We encountered this warning a lot in the logs after upgrading the SDK today.

My understanding is that this path is expected if the event is not yet in the timeline, so it's nothing to warn about.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
  • Loading branch information
zecakeh authored and bnjbvr committed Feb 11, 2025
1 parent 8042abe commit 654885a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ pub(crate) fn find_item_and_apply_aggregation(
aggregation: Aggregation,
) -> bool {
let Some((idx, event_item)) = rfind_event_by_item_id(items, target) else {
warn!("couldn't find aggregation's target {target:?}");
trace!("couldn't find aggregation's target {target:?}");
return false;
};

Expand Down

0 comments on commit 654885a

Please sign in to comment.