client-core: add warning when delay multiplier is larger than 1

This commit is contained in:
Jon Häggblad
2022-11-23 21:00:48 +01:00
parent bb98d796a8
commit fb31dbee16
@@ -482,6 +482,12 @@ where
} else {
log::debug!("{status_str}");
}
if self.sending_delay_controller.current_multiplier() > 1 {
log::warn!(
"Unable to send packets fast enough - sending delay multiplier set to: {}",
self.sending_delay_controller.current_multiplier()
);
}
}
#[cfg(not(target_arch = "wasm32"))]