demote event from info to debug

And also make it structured instead of stringified.
This commit is contained in:
Charles Hall 2024-06-22 11:32:37 -07:00
parent 601c2ed3e5
commit 230172718f
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF

View file

@ -588,7 +588,10 @@ impl Service {
));
}
info!("Upgrading {} to timeline pdu", incoming_pdu.event_id);
debug!(
event_id = %incoming_pdu.event_id,
"Upgrading event to timeline pdu",
);
let create_event_content: RoomCreateEventContent =
serde_json::from_str(create_event.content.get()).map_err(|e| {