Remove some additional log lines.

This commit is contained in:
Luke Curley 2023-10-20 15:41:02 +09:00
parent 9da061b8fe
commit d2a0722b1b
3 changed files with 1 additions and 10 deletions

View File

@ -71,8 +71,6 @@ async fn get_origin(
) -> Result<Json<Origin>, AppError> { ) -> Result<Json<Origin>, AppError> {
let key = origin_key(&id); let key = origin_key(&id);
log::debug!("get_origin: id={}", id);
let payload: Option<String> = redis.get(&key).await?; let payload: Option<String> = redis.get(&key).await?;
let payload = payload.ok_or(AppError::NotFound)?; let payload = payload.ok_or(AppError::NotFound)?;
let origin: Origin = serde_json::from_str(&payload)?; let origin: Origin = serde_json::from_str(&payload)?;

View File

@ -94,10 +94,7 @@ impl Origin {
if let Some(broadcast) = cache.get(id) { if let Some(broadcast) = cache.get(id) {
if let Some(broadcast) = broadcast.upgrade() { if let Some(broadcast) = broadcast.upgrade() {
log::debug!("returned broadcast from cache: id={}", id);
return broadcast; return broadcast;
} else {
log::debug!("stale broadcast in cache somehow: id={}", id);
} }
} }
@ -109,8 +106,6 @@ impl Origin {
cache.insert(id.to_string(), Arc::downgrade(&subscriber)); cache.insert(id.to_string(), Arc::downgrade(&subscriber));
log::debug!("fetching into cache: id={}", id);
let mut this = self.clone(); let mut this = self.clone();
let id = id.to_string(); let id = id.to_string();
@ -160,7 +155,6 @@ pub struct Subscriber {
impl Drop for Subscriber { impl Drop for Subscriber {
fn drop(&mut self) { fn drop(&mut self) {
log::debug!("subscriber: removing from cache: id={}", self.id);
self.origin.cache.lock().unwrap().remove(&self.broadcast.id); self.origin.cache.lock().unwrap().remove(&self.broadcast.id);
} }
} }
@ -190,7 +184,6 @@ impl Publisher {
loop { loop {
if let Some((api, origin)) = self.api.as_mut() { if let Some((api, origin)) = self.api.as_mut() {
log::debug!("refreshing origin: id={}", self.broadcast.id);
api.patch_origin(&self.broadcast.id, origin).await?; api.patch_origin(&self.broadcast.id, origin).await?;
} }

View File

@ -111,7 +111,7 @@ impl Subscriber {
.await .await
.map_err(|e| SessionError::Unknown(e.to_string()))?; .map_err(|e| SessionError::Unknown(e.to_string()))?;
log::debug!("received object: {:?}", object); log::trace!("received object: {:?}", object);
// A new scope is needed because the async compiler is dumb // A new scope is needed because the async compiler is dumb
let mut publisher = { let mut publisher = {