Always store the log file under home dir.

imgbot
Blaž Hrastnik 3 years ago
parent 8c82f8f140
commit 3f6f82b0c4

1
Cargo.lock generated

@ -592,6 +592,7 @@ dependencies = [
"chrono",
"clap",
"crossterm",
"dirs-next",
"fern",
"futures-util",
"fuzzy-matcher",

@ -37,3 +37,5 @@ log = "0.4"
# File picker
fuzzy-matcher = "0.3"
ignore = "0.4"
# shellexpand = "2.1"
dirs-next = "2.0"

@ -31,6 +31,8 @@ fn setup_logging(verbosity: u64) -> Result<(), fern::InitError> {
_3_or_more => base_config.level(log::LevelFilter::Trace),
};
let home = dirs_next::home_dir().expect("can't find the home directory");
// Separate file config so we can include year, month and day in file logs
let file_config = fern::Dispatch::new()
.format(|out, message, record| {
@ -42,7 +44,7 @@ fn setup_logging(verbosity: u64) -> Result<(), fern::InitError> {
message
))
})
.chain(fern::log_file("helix.log")?);
.chain(fern::log_file(home.join("helix.log"))?);
base_config.chain(file_config).apply()?;

Loading…
Cancel
Save