|
|
|
@ -1,21 +1,34 @@
|
|
|
|
|
use log::Level;
|
|
|
|
|
use std::thread;
|
|
|
|
|
use env_logger::Env;
|
|
|
|
|
use crate::utils::settings::get_settings;
|
|
|
|
|
use chrono::Local;
|
|
|
|
|
use colored::*;
|
|
|
|
|
use log::{Level, LevelFilter};
|
|
|
|
|
use std::fs;
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
|
|
/// Initializes the env_logger with a custom format
|
|
|
|
|
/// that also logs the thread names
|
|
|
|
|
pub fn init_logger() {
|
|
|
|
|
env_logger::Builder::from_env(Env::default().default_filter_or("info"))
|
|
|
|
|
.format(|buf, record| {
|
|
|
|
|
use std::io::Write;
|
|
|
|
|
let log_dir = get_settings().log_folder;
|
|
|
|
|
if !log_dir.exists() {
|
|
|
|
|
fs::create_dir(&log_dir).expect("failed to create log dir");
|
|
|
|
|
}
|
|
|
|
|
fern::Dispatch::new()
|
|
|
|
|
.format(|out, message, record| {
|
|
|
|
|
let color = get_level_style(record.level());
|
|
|
|
|
writeln!(
|
|
|
|
|
buf,
|
|
|
|
|
"{:<25} {:<45}| {} {}: {}",
|
|
|
|
|
format!("thread::{}", thread::current().name().unwrap_or("main")).dimmed(),
|
|
|
|
|
record.target().dimmed().italic(),
|
|
|
|
|
let mut thread_name = format!(
|
|
|
|
|
"thread::{}",
|
|
|
|
|
thread::current().name().unwrap_or("main").to_string()
|
|
|
|
|
);
|
|
|
|
|
thread_name.truncate(34);
|
|
|
|
|
let mut target = record.target().to_string();
|
|
|
|
|
target.truncate(39);
|
|
|
|
|
|
|
|
|
|
out.finish(format_args!(
|
|
|
|
|
"{:<35} {:<40}| {} {}: {}",
|
|
|
|
|
thread_name.dimmed(),
|
|
|
|
|
target.dimmed().italic(),
|
|
|
|
|
Local::now().format("%Y-%m-%dT%H:%M:%S"),
|
|
|
|
|
record
|
|
|
|
|
.level()
|
|
|
|
@ -23,10 +36,27 @@ pub fn init_logger() {
|
|
|
|
|
.to_lowercase()
|
|
|
|
|
.as_str()
|
|
|
|
|
.color(color),
|
|
|
|
|
record.args()
|
|
|
|
|
)
|
|
|
|
|
message
|
|
|
|
|
))
|
|
|
|
|
})
|
|
|
|
|
.init();
|
|
|
|
|
.level(
|
|
|
|
|
log::LevelFilter::from_str(
|
|
|
|
|
std::env::var("RUST_LOG")
|
|
|
|
|
.unwrap_or("info".to_string())
|
|
|
|
|
.as_str(),
|
|
|
|
|
)
|
|
|
|
|
.unwrap_or(LevelFilter::Info),
|
|
|
|
|
)
|
|
|
|
|
.chain(std::io::stdout())
|
|
|
|
|
.chain(
|
|
|
|
|
fern::log_file(log_dir.join(PathBuf::from(format!(
|
|
|
|
|
"{}.log",
|
|
|
|
|
Local::now().format("%Y-%m-%d"),
|
|
|
|
|
))))
|
|
|
|
|
.expect("failed to create log file"),
|
|
|
|
|
)
|
|
|
|
|
.apply()
|
|
|
|
|
.expect("failed to init logger");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn get_level_style(level: Level) -> colored::Color {
|
|
|
|
|