From b0bee8f6aef11c7dee6d39b5dd526fcb0c497277 Mon Sep 17 00:00:00 2001 From: strawberry Date: Thu, 14 Mar 2024 01:44:19 -0400 Subject: [PATCH] drop sync requests to debug Signed-off-by: strawberry --- src/api/client_server/sync.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/client_server/sync.rs b/src/api/client_server/sync.rs index 681b175d..bb4cd51d 100644 --- a/src/api/client_server/sync.rs +++ b/src/api/client_server/sync.rs @@ -28,7 +28,7 @@ use ruma::{ uint, DeviceId, OwnedDeviceId, OwnedUserId, RoomId, UInt, UserId, }; use tokio::sync::watch::Sender; -use tracing::{error, info}; +use tracing::{debug, error}; use crate::{service::rooms::timeline::PduCount, services, Error, PduEvent, Result, Ruma, RumaResponse}; @@ -98,7 +98,7 @@ pub async fn sync_events_route( o.insert((body.since.clone(), rx.clone())); - info!("Sync started for {sender_user}"); + debug!("Sync started for {sender_user}"); tokio::spawn(sync_helper_wrapper(sender_user.clone(), sender_device.clone(), body, tx));