♻️ Replace tracing dependency with dioxus-logger

tracing package doesn't support web platform when dioxus-logger `will eventually support every target that Dioxus
does. Currently only web and desktop platforms are supported.`
This commit is contained in:
2024-04-06 11:51:46 +02:00
parent f78765e553
commit 0ec1187fc3
15 changed files with 16 additions and 20 deletions

View File

@@ -4,8 +4,8 @@ use std::rc::Rc;
use dioxus::prelude::*;
use dioxus_free_icons::icons::io_icons::IoChevronDown;
use dioxus_free_icons::Icon;
use log::debug;
use matrix_sdk::{ruma::OwnedRoomId, RoomState};
use tracing::debug;
use crate::base::{ByIdRooms, Room, CHATS_WIN_INTERFACE, ROOMS};
use crate::ui::components::chats_window::interface::Interface as ChatsWindowInterface;