changelog: fix wording

This commit is contained in:
Jon Häggblad
2022-12-09 22:35:37 +01:00
parent 29dd121282
commit 5283329914
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://
### Changed
- validator-api: can recover from shutdown during DKG process ([#1872])
- client-core: deduplicate gateway inititialization, part of work towards a rust-sdk
- clients: deduplicate gateway inititialization, part of work towards a rust-sdk
- clients: keep all transmission lanes going at all times by making priority probabilistic
### Fixed
@@ -437,7 +437,7 @@ impl ServiceProvider {
.await;
});
println!("\nAll systems go. Press CTRL-C to stop the server.");
log::info!("All systems go. Press CTRL-C to stop the server.");
// for each incoming message from the websocket... (which in 99.99% cases is going to be a mix message)
loop {
let Some(received) = Self::read_websocket_message(
@@ -63,7 +63,7 @@ impl Run {
.unwrap_or(&DEFAULT_WEBSOCKET_LISTENING_PORT.to_string())
);
println!("Starting socks5 service provider:");
log::info!("Starting socks5 service provider");
let mut server = core::ServiceProvider::new(
uri,
self.open_proxy,