feat: Use info level logs for residency check failures

This commit is contained in:
timedout
2026-01-27 23:26:14 +00:00
committed by Ellis Git
parent 76fe8c4cdc
commit 082ed5b70c
14 changed files with 88 additions and 25 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#![allow(deprecated)]
use axum::extract::State;
use conduwuit::{Err, Result, debug_warn, err, matrix::event::gen_event_id_canonical_json};
use conduwuit::{Err, Result, err, info, matrix::event::gen_event_id_canonical_json};
use conduwuit_service::Services;
use futures::FutureExt;
use ruma::{
@@ -56,7 +56,7 @@ async fn create_leave_event(
.server_in_room(services.globals.server_name(), room_id)
.await
{
debug_warn!(
info!(
origin = origin.as_str(),
"Refusing to serve backfill for room we aren't participating in"
);