AppFlowy/frontend/rust-lib/lib-log/src/lib.rs

95 lines
2.4 KiB
Rust
Raw Normal View History

use std::sync::RwLock;
2021-11-03 07:28:34 +00:00
use lazy_static::lazy_static;
use log::LevelFilter;
use tracing::subscriber::set_global_default;
2021-11-03 07:28:34 +00:00
use tracing_appender::{non_blocking::WorkerGuard, rolling::RollingFileAppender};
use tracing_bunyan_formatter::JsonStorageLayer;
2021-06-29 05:45:32 +00:00
use tracing_log::LogTracer;
2021-11-04 08:43:12 +00:00
use tracing_subscriber::{layer::SubscriberExt, EnvFilter};
2021-11-03 07:28:34 +00:00
use crate::layer::FlowyFormattingLayer;
mod layer;
2021-11-03 07:28:34 +00:00
lazy_static! {
static ref LOG_GUARD: RwLock<Option<WorkerGuard>> = RwLock::new(None);
2021-11-03 07:28:34 +00:00
}
2021-07-03 06:14:10 +00:00
2021-08-19 06:08:24 +00:00
pub struct Builder {
#[allow(dead_code)]
name: String,
env_filter: String,
file_appender: RollingFileAppender,
2021-07-03 06:14:10 +00:00
}
2021-08-19 06:08:24 +00:00
impl Builder {
pub fn new(name: &str, directory: &str) -> Self {
// let directory = directory.as_ref().to_str().unwrap().to_owned();
let local_file_name = format!("{}.log", name);
Builder {
name: name.to_owned(),
env_filter: "Info".to_owned(),
file_appender: tracing_appender::rolling::daily(directory, local_file_name),
2021-07-03 06:14:10 +00:00
}
}
2021-07-03 06:14:10 +00:00
pub fn env_filter(mut self, env_filter: &str) -> Self {
self.env_filter = env_filter.to_owned();
self
}
2021-07-03 06:14:10 +00:00
pub fn build(self) -> std::result::Result<(), String> {
let env_filter = EnvFilter::new(self.env_filter);
let (non_blocking, guard) = tracing_appender::non_blocking(self.file_appender);
let subscriber = tracing_subscriber::fmt()
.with_ansi(true)
.with_target(true)
.with_max_level(tracing::Level::TRACE)
.with_writer(std::io::stderr)
.with_thread_ids(true)
.json()
.with_current_span(true)
.with_span_list(true)
.compact()
.finish()
.with(env_filter)
.with(JsonStorageLayer)
.with(FlowyFormattingLayer::new(std::io::stdout))
.with(FlowyFormattingLayer::new(non_blocking));
2021-09-13 05:05:46 +00:00
set_global_default(subscriber).map_err(|e| format!("{:?}", e))?;
LogTracer::builder()
.with_max_level(LevelFilter::Trace)
.init()
.map_err(|e| format!("{:?}", e))?;
2021-07-03 13:40:13 +00:00
*LOG_GUARD.write().unwrap() = Some(guard);
Ok(())
}
2021-07-03 06:14:10 +00:00
}
2021-06-29 05:45:32 +00:00
#[cfg(test)]
mod tests {
use super::*;
// run cargo test --features="use_bunyan" or cargo test
#[test]
fn test_log() {
Builder::new("flowy", ".")
.env_filter("debug")
.build()
.unwrap();
tracing::info!("😁 tracing::info call");
log::debug!("😁 log::debug call");
2021-07-03 06:14:10 +00:00
say("hello world");
}
2021-07-03 06:14:10 +00:00
#[tracing::instrument(level = "trace", name = "say")]
fn say(s: &str) {
tracing::info!("{}", s);
}
2021-06-29 05:45:32 +00:00
}