bve 0.0.1

Remaking OpenBVE using a modern architecture, using Unity and Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Logger and associated tooling.
//!
//! BVE-Reborn uses a fully async logger. All log events are sent to a different thread to be serialized and written to
//! file. The logger backend is implemented using the `tracing` library.

pub use data::*;
pub use global::*;
pub use method::*;
pub use subscriber::*;
pub use tracing_core::Level;

mod common;
mod data;
mod global;
mod method;
mod subscriber;
mod writer;