use crate::config::config::Environment; use actix_web::rt::task::JoinHandle; use chrono::Local; use tracing::subscriber::set_global_default; use tracing_subscriber::fmt::format::Writer; use tracing_subscriber::{layer::SubscriberExt, EnvFilter}; /// Register a subscriber as global default to process span data. /// /// It should only be called once! pub fn init_subscriber(app_env: &Environment, filters: Vec) { let env_filter = EnvFilter::new(filters.join(",")); let builder = tracing_subscriber::fmt() .with_target(true) .with_max_level(tracing::Level::TRACE) .with_thread_ids(false) .with_file(true) .with_line_number(true); match app_env { Environment::Local => { let subscriber = builder .with_ansi(true) .with_timer(CustomTime) .with_target(false) .with_file(false) .pretty() .finish() .with(env_filter); set_global_default(subscriber).unwrap(); }, Environment::Production => { // let name = "appflowy_cloud".to_string(); // let sink = std::io::stdout; // let formatting_layer = BunyanFormattingLayer::new(name, sink); let subscriber = builder.json().finish().with(env_filter); // .with(JsonStorageLayer) // .with(formatting_layer); set_global_default(subscriber).unwrap(); }, } } struct CustomTime; impl tracing_subscriber::fmt::time::FormatTime for CustomTime { fn format_time(&self, w: &mut Writer<'_>) -> std::fmt::Result { write!(w, "{}", Local::now().format("%Y-%m-%d %H:%M:%S")) } } pub fn spawn_blocking_with_tracing(f: F) -> JoinHandle where F: FnOnce() -> R + Send + 'static, R: Send + 'static, { let current_span = tracing::Span::current(); actix_web::rt::task::spawn_blocking(move || current_span.in_scope(f)) }