diff options
| author | Fuwn <[email protected]> | 2022-02-08 22:58:41 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 07:46:04 +0000 |
| commit | fb078859f74e23559e7e2610aa3a5ed856f30681 (patch) | |
| tree | b7b1d29db110b22165d8561832e26d33c2dae927 /crates/divina_git | |
| parent | fix(cli): better init pathing (diff) | |
| download | divina-fb078859f74e23559e7e2610aa3a5ed856f30681.tar.xz divina-fb078859f74e23559e7e2610aa3a5ed856f30681.zip | |
fix(divina_git): match log style
Diffstat (limited to 'crates/divina_git')
| -rw-r--r-- | crates/divina_git/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/divina_git/src/lib.rs b/crates/divina_git/src/lib.rs index e73623f..5583be9 100644 --- a/crates/divina_git/src/lib.rs +++ b/crates/divina_git/src/lib.rs @@ -46,13 +46,13 @@ fn print(state: &mut State) { state.newline = true; } print!( - "Resolving deltas {}/{}\r", + ":: resolving deltas {}/{}\r", git_stats.indexed_deltas(), git_stats.total_deltas() ); } else { print!( - "net {:3}% ({:4} kb, {:5}/{:5}) / idx {:3}% ({:5}/{:5}) / chk {:3}% ({:4}/{:4}) {}\r", + ":: net {:3}% ({:4} kb, {:5}/{:5}) / idx {:3}% ({:5}/{:5}) / chk {:3}% ({:4}/{:4}) {}\r", network_pct, kbytes, git_stats.received_objects(), |