From ad7490c4fe9aaa642f4018e65b8da7cfd1069a30 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 7 Sep 2020 09:33:42 +0200 Subject: [PATCH] more logging --- asyncgit/src/sync/remotes.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/asyncgit/src/sync/remotes.rs b/asyncgit/src/sync/remotes.rs index 078f846a..dbbc8270 100644 --- a/asyncgit/src/sync/remotes.rs +++ b/asyncgit/src/sync/remotes.rs @@ -98,6 +98,10 @@ fn remote_callbacks<'a>( log::debug!("progress: {}/{} ({} B)", current, total, bytes,); }); + callbacks.update_tips(|name, a, b| { + log::debug!("update: '{}' [{}] [{}]", name, a, b); + true + }); callbacks.transfer_progress(|p| { log::debug!( "transfer progress: {} B / {} / {} ",