Skip to main content

rex_logger/
lib.rs

1pub mod errors;
2pub mod memory_logger;
3pub mod tracing_logger;
4pub use tracing;
5mod macros;
6
7pub use tracing_logger::config::{LoggingOption, LoggingOptionBuilder};
8pub use tracing_logger::logger::init_logger;
9
10pub use memory_logger::config::{
11    LogEntry, RUNNER_AND_SYSLOG_TARGET, RUNNER_TARGET, RUNNER_TARGET_FOR_SCRIPT_LOGS,
12};
13pub use memory_logger::handler::{
14    ScriptLogHandle, get_script_handle, push_rhai_context_with_guard,
15};