summaryrefslogtreecommitdiffstats
path: root/zellij-utils
diff options
context:
space:
mode:
authorPaweł Palenica <pawelpalenica11@gmail.com>2021-07-17 23:50:24 -0700
committerPaweł Palenica <pawelpalenica11@gmail.com>2021-07-17 23:50:24 -0700
commit27634423d90df538070e052ba4cbd8b9811fae51 (patch)
tree8d0612ea622b8f96bfd742e1e0cce6170d448c93 /zellij-utils
parent3326f521efd33cdfbe9df3d6f44ddd9042897943 (diff)
Minor fixes
Diffstat (limited to 'zellij-utils')
-rw-r--r--zellij-utils/src/logging.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/zellij-utils/src/logging.rs b/zellij-utils/src/logging.rs
index d7f35344d..7e57eebda 100644
--- a/zellij-utils/src/logging.rs
+++ b/zellij-utils/src/logging.rs
@@ -7,7 +7,7 @@ use std::{
path::{Path, PathBuf},
};
-use log::{info, LevelFilter};
+use log::LevelFilter;
use log4rs::append::file::FileAppender;
use log4rs::config::{Appender, Config, Logger, Root};
@@ -59,8 +59,6 @@ pub fn configure_logger() {
.unwrap();
let _ = log4rs::init_config(config).unwrap();
-
- info!("Zellij logger initialized");
}
pub fn atomic_create_file(file_name: &Path) -> io::Result<()> {