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");