rivet-logger 0.1.0

Rivet framework crates and adapters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::io;

mod build;
pub mod daily;
pub mod single;
pub mod stack;
pub mod stdout;

pub use build::{
    build_all_handlers_from_config, build_handler_for_channel_from_config,
    build_handler_from_config,
};

pub trait Handler: Send + Sync {
    fn log(&self, message: &str) -> io::Result<()>;
}