diff --git a/crates/cli/src/tui/components/history.rs b/crates/cli/src/tui/components/history.rs index 58d9a40..2de835b 100644 --- a/crates/cli/src/tui/components/history.rs +++ b/crates/cli/src/tui/components/history.rs @@ -63,7 +63,6 @@ impl From for Line<'_> { let pre = caps["pre"].to_owned(); let hash = caps["hash"].to_owned(); let message = caps["message"].to_owned(); - info!(branches=?caps["branches"], "raw branches"); let mut branches = BRANCHES .captures_iter(&caps["branches"]) .map(|captures| captures["branch"].to_owned()) @@ -81,7 +80,6 @@ impl From for Line<'_> { } else { // line withbranches let mut spans = vec![pre.into(), " ".into(), hash.into(), " ".into()]; - info!(?branches, "matched branch list"); branches.sort(); branches .into_iter()