use std::path::PathBuf;
use color_eyre::Result;
use tracing_error::ErrorLayer;
use tracing_subscriber::{fmt, prelude::*};
pub fn init() -> Result<()> {
let directory = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
std::fs::create_dir_all(directory.clone())?;
let log_path = directory.join("ratatui.log");
let log_file = std::fs::File::create(log_path)?;
let file_subscriber = fmt::layer()
.with_file(true)
.with_line_number(true)
.with_writer(log_file)
.with_target(false)
.with_ansi(false);
tracing_subscriber::registry()
.with(file_subscriber)
.with(ErrorLayer::default())
.try_init()?;
Ok(())
}