We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa5afa commit 5e50a9eCopy full SHA for 5e50a9e
server/src/http/refresher/delta_refresher.rs
@@ -16,7 +16,13 @@ impl FeatureRefresher {
16
delta: ClientFeaturesDelta,
17
etag: Option<EntityTag>,
18
) {
19
- debug!("Got updated client features delta. Updating features with {etag:?}");
+ let updated_len = delta.updated.len();
20
+ let removed_len = delta.removed.len();
21
+
22
+ debug!(
23
+ "Got updated client features delta. Updating features with {etag:?}, updated {updated_len}, removed {removed_len}"
24
+ );
25
26
let key = cache_key(refresh_token);
27
self.features_cache.apply_delta(key.clone(), &delta);
28
self.update_last_refresh(
0 commit comments