#logging #dioxus #log

dioxus-logger

A logging utility to provide a standard interface whether you're targetting web desktop, fullstack, and more

8 releases (4 breaking)

0.5.0 Apr 17, 2024
0.4.1 May 8, 2023
0.3.0 Nov 10, 2022
0.2.0 Nov 9, 2022
0.1.2 Nov 5, 2022

#155 in Debugging

Download history 448/week @ 2024-01-12 313/week @ 2024-01-19 359/week @ 2024-01-26 270/week @ 2024-02-02 190/week @ 2024-02-09 415/week @ 2024-02-16 804/week @ 2024-02-23 1278/week @ 2024-03-01 519/week @ 2024-03-08 307/week @ 2024-03-15 574/week @ 2024-03-22 886/week @ 2024-03-29 1074/week @ 2024-04-05 1641/week @ 2024-04-12 1439/week @ 2024-04-19 1342/week @ 2024-04-26

5,601 downloads per month
Used in 4 crates

MIT license

6KB

📡 Dioxus Logger 🛰️

A logging utility to provide a standard interface whether you're targetting web desktop, fullstack, and more.


dioxus-logger is a basic cross-platform facade for logging in Dioxus that uses the tracing crate.

use dioxus::prelude::*;
use tracing::{Level, info};
 
fn main() {
  dioxus_logger::init(Level::INFO).expect("logger failed to init");
  launch(App);
}

#[component]
fn App() -> Element {
  info!("App rendered");
  rsx! {
    p { "hi" }
  }
}

Platform Support

Dioxus logger will eventually support every target that Dioxus does. Currently mobile and TUI are not supported.

Installation

You can add dioxus-logger to your application by adding it to your dependencies.

[dependencies]
dioxus-logger = "0.5"

License

This project is licensed under the MIT license.

Every contribution intentionally submitted for inclusion in dioxus-logger by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~1.3–1.8MB
~28K SLoC