task(sliding_sync): Avoid logging the entire sliding sync response at the DEBUG level

Signed-off-by: Damir Jelić <poljar@termina.org.uk>
Co-authored-by: Damir Jelić <poljar@termina.org.uk>
Co-authored-by: Jonas Platte <jplatte@matrix.org>
This commit is contained in:
Andy Balaam
2025-07-18 14:18:04 +01:00
committed by GitHub
parent a5fbcf1491
commit f89ced3ded

View File

@@ -292,7 +292,8 @@ impl SlidingSync {
response_processor.process_and_take_response().await?
};
debug!(?sync_response, "Sliding Sync response has been handled by the client");
debug!("Sliding Sync response has been handled by the client");
trace!(?sync_response);
// Commit sticky parameters, if needed.
if let Some(ref txn_id) = sliding_sync_response.txn_id {