aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r--helix-term/src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs
index cdaa3924..84b52ea2 100644
--- a/helix-term/src/main.rs
+++ b/helix-term/src/main.rs
@@ -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()?;