diff options
| author | Fuwn <[email protected]> | 2022-02-08 14:58:41 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 00:46:04 -0700 |
| commit | b8bb4f600d934fdaac428ef070cfe987a67f1340 (patch) | |
| tree | b7b1d29db110b22165d8561832e26d33c2dae927 /crates | |
| parent | fix(cli): better init pathing (diff) | |
| download | archived-divina-b8bb4f600d934fdaac428ef070cfe987a67f1340.tar.xz archived-divina-b8bb4f600d934fdaac428ef070cfe987a67f1340.zip | |
fix(divina_git): match log style
Diffstat (limited to 'crates')
| -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(), |