actually make logging work

This commit is contained in:
2024-11-11 14:09:05 -07:00
parent 2211be5324
commit 70fcd18690
3 changed files with 10 additions and 8 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
use mumble_web2_gui::app;
use mumble_web2_gui::{app, imp::init_logging};
pub fn main() {
#[cfg(feature = "desktop")]
@@ -7,5 +7,6 @@ pub fn main() {
.build()
.unwrap()
.enter();
init_logging();
dioxus::launch(app::app);
}