- log for test are configurable to either be spit into the void (cargo test default) or into `stdout`.
32 lines
1.1 KiB
Rust
32 lines
1.1 KiB
Rust
use tracing::subscriber::set_global_default;
|
|
use tracing::Subscriber;
|
|
use tracing_bunyan_formatter::{BunyanFormattingLayer, JsonStorageLayer};
|
|
use tracing_log::LogTracer;
|
|
use tracing_subscriber::{fmt::MakeWriter, layer::SubscriberExt, EnvFilter, Registry};
|
|
|
|
pub fn get_subscriber<Sink>(
|
|
name: String,
|
|
env_filter: String,
|
|
sink: Sink,
|
|
) -> impl Subscriber + Send + Sync
|
|
where
|
|
Sink: for<'a> MakeWriter<'a> + Send + Sync + 'static,
|
|
{
|
|
let env_filter =
|
|
EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new(env_filter));
|
|
let formatting_layer = BunyanFormattingLayer::new(name, sink);
|
|
Registry::default()
|
|
.with(env_filter)
|
|
.with(JsonStorageLayer)
|
|
.with(formatting_layer)
|
|
}
|
|
|
|
// init_subscriber should only be called once
|
|
//
|
|
// This is solved with the once_cell crate
|
|
// until the std::sync::SyncOnceCell is stable in the toolchain
|
|
pub fn init_subscriber(subscriber: impl Subscriber + Send + Sync) {
|
|
LogTracer::init().expect("Failed to set logger");
|
|
set_global_default(subscriber).expect("Failed to set subscriber");
|
|
}
|