debug print sideband progress

This commit is contained in:
Stephan Dilly 2022-01-22 18:53:59 +01:00
parent 614040b854
commit 9653545c81

View file

@ -91,6 +91,14 @@ impl Callbacks {
},
);
callbacks.sideband_progress(move |data| {
log::debug!(
"sideband transfer: '{}'",
String::from_utf8_lossy(data).trim()
);
true
});
callbacks
}