From cb01fda516e62a37a7ecbebff6b4179f2d500fad Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sun, 18 Sep 2022 15:24:45 +0200 Subject: [PATCH] some logfile cleanup --- src/components/revision_files.rs | 1 - src/ui/syntax_text.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/revision_files.rs b/src/components/revision_files.rs index 50f7122c..a0f15703 100644 --- a/src/components/revision_files.rs +++ b/src/components/revision_files.rs @@ -214,7 +214,6 @@ impl RevisionFilesComponent { fn selection_changed(&mut self) { //TODO: retrieve TreeFile from tree datastructure if let Some(file) = self.selected_file_path_with_prefix() { - log::info!("selected: {:?}", file); let path = Path::new(&file); if let Some(item) = self.files.iter().find(|f| f.path == path) diff --git a/src/ui/syntax_text.rs b/src/ui/syntax_text.rs index 6f9ac75e..2e7de2d1 100644 --- a/src/ui/syntax_text.rs +++ b/src/ui/syntax_text.rs @@ -73,7 +73,6 @@ impl SyntaxText { params: &RunParams, ) -> asyncgit::Result { scope_time!("syntax_highlighting"); - log::debug!("syntax: {:?}", file_path); let mut state = { scope_time!("syntax_highlighting.0");