fix(tui): remove logging from inside ui loop
All checks were successful
Rust / build (push) Successful in 10m6s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 1m7s
All checks were successful
Rust / build (push) Successful in 10m6s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 1m7s
This commit is contained in:
parent
2b09872131
commit
8550adf79e
1 changed files with 0 additions and 2 deletions
|
@ -63,7 +63,6 @@ impl From<LogLine> 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<LogLine> 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()
|
||||
|
|
Loading…
Reference in a new issue