ascolt 0.1.11

Async runtime-agnostic actor framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[allow(unused_variables)]
pub fn info(msg: String) {
    #[cfg(feature = "tracing")]
    tracing::info!(msg)
}

#[allow(unused_variables)]
pub fn error(msg: String) {
    #[cfg(feature = "tracing")]
    tracing::error!(msg)
}