2024-07-17 14:44:39 +02:00
2024-07-17 14:33:28 +02:00
2024-07-17 14:33:28 +02:00
2024-07-17 14:44:39 +02:00
2024-07-17 14:25:44 +02:00
2024-07-17 14:44:39 +02:00

tracing-layer-win-eventlog

Layer for the tracing_subscriber to write to the Windows EventLog

Usage

use tracing_subscriber::{layer::SubscriberExt as _, util::SubscriberInitExt as _};

fn main() {
    println!("Hello, world!");

    tracing_subscriber::registry()
        .with(tracing_layer_win_eventlog::EventLogLayer)
        .init();

    tracing::info!(id = 40, "hello world!");
}

Description
Layer for the *tracing_subscriber* to write to the Windows EventLog
Readme MIT 35 KiB
Languages
Rust 100%