Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/quiet-dolphins-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@core/sync-service': patch
---

Demote the log entry about expiring shapes to level info so that it's excluded from logs in Honeycomb.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ defmodule Electric.ShapeCache.ExpiryManager do
number_to_expire = shape_count - state.max_shapes
{handles_to_expire, min_age} = least_recently_used(state, number_to_expire)

Logger.notice(
Logger.info(
"Expiring shapes as the number of shapes has exceeded the limit",
number_to_expire: number_to_expire,
max_shapes: state.max_shapes
Expand Down
Loading