elfo 0.2.0-alpha.21

An asynchronous distributed actor framework with robust observability
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(dead_code)] // TODO: combine tests into "it/*"
#![allow(missing_docs)]

// For tests without `elfo::test::proxy`.
pub(crate) fn setup_logger() {
    let _ = tracing_subscriber::fmt()
        .with_target(false)
        .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
        .with_test_writer()
        .try_init();
}